diff --git a/.gitignore b/.gitignore index b83d222..af387a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ /target/ +/tools/api-catalog/bin/ +/tools/api-catalog/obj/ diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..a5ab890 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1 @@ +All code and API mappings must be cross-platform; do not use macOS-only APIs unless equivalent Linux and Windows implementations are provided. diff --git a/README.md b/README.md index 8fc1dce..448552d 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ complete public API shim. The source snapshot, compatibility rules, dependency research, and ordered implementation plan are in [RUSTREWRITE.md](RUSTREWRITE.md). +The authoritative compiled .NET surface is checked in as +[`api/public-api.json`](api/public-api.json); [`api/README.md`](api/README.md) +documents deterministic regeneration and the external types that must be +mapped to native Rust equivalents. + ```sh cargo build --workspace cargo test --workspace --no-run diff --git a/RUSTREWRITE.md b/RUSTREWRITE.md index 0cdbda4..4e10637 100644 --- a/RUSTREWRITE.md +++ b/RUSTREWRITE.md @@ -20,6 +20,10 @@ Generated inventories are intentionally checked in: crate/module/type and source line. - `api/SURFACE.tsv` records every public declaration line in the 13 library projects, including a SHA-256 digest. +- `api/public-api.json` is the authoritative compiled-metadata catalog for all + 13 library assemblies after all six source generators run. It also records + every external type referenced by a public signature as a pending Rust + mapping obligation. - `tests/upstream-tests.json` records every NUnit invocation and the SHA-256 of its C# method body. - `tests/PARITY.md` maps every NUnit invocation to its Rust test name. @@ -27,9 +31,11 @@ Generated inventories are intentionally checked in: nine sample/tool projects. Run `python3 tools/generate_surface.py` after deliberately changing the pinned -upstream snapshot. The generator rejects a test count other than 1,295 so an -upstream drift cannot silently remove tests. Update the commit constant and -review all ledger diffs in the same change. +upstream snapshot, then run `python3 tools/extract_public_api.py` to rebuild the +authoritative metadata catalog twice and require byte-identical output. The +source generator rejects a test count other than 1,295 so upstream drift cannot +silently remove tests. Update both commit constants and review all ledger diffs +in the same change. ### Current shell status @@ -38,6 +44,9 @@ The current workspace is a structural baseline, not a working client: - all 13 public .NET library projects have corresponding Rust crates; - 1,705 public C# type declarations produce compiling Rust type/trait shims; - 12,195 public declaration lines are retained in the API ledger; +- compiled metadata records 3,066 public types and 30,789 public members with + matching independent ECMA-335 counts, plus 142 external signature types that + still require explicit Rust mapping decisions; - all 1,295 NUnit `[Test]`/`[TestCase]` invocations have compiling Rust test entries that intentionally panic with their source identity and body hash; - all nine sample/tool projects have compiling Rust binary targets; @@ -184,12 +193,16 @@ for every public/nested-public: - event and delegate payload; - base type, implemented interface and relevant public attribute. -Create `api/public-api.json` as that catalog and `api/RUST-MAPPING.tsv` with one -row per C# member: stable C# documentation ID, C# signature, Rust crate/path, -Rust signature, mapping decision, and status. A coverage checker must fail for -missing members, duplicate Rust destinations, unresolved types, or stale source -IDs. `api/SURFACE.tsv` remains useful for source navigation but is not the -coverage authority. +`api/public-api.json` is that catalog. Its `external_types` section records each +non-LibreMetaverse type used by a public signature, its defining assembly, and +every owning LibreMetaverse documentation ID; it intentionally does not copy +the external assembly's member surface. Create `api/RUST-MAPPING.tsv` with one +row per C# member and resolve every external entry to Rust core/std, an adopted +crate, or a native MetaCrate replacement: stable C# documentation ID, C# +signature, Rust crate/path, Rust signature, mapping decision, and status. A +coverage checker must fail for missing members, duplicate Rust destinations, +unresolved external types, or stale source IDs. `api/SURFACE.tsv` remains useful +for source navigation but is not the coverage authority. Each mapped Rust item must actually compile and be callable: diff --git a/api/README.md b/api/README.md new file mode 100644 index 0000000..9462a13 --- /dev/null +++ b/api/README.md @@ -0,0 +1,30 @@ +# Public API catalog + +`public-api.json` is the authoritative compiled-metadata inventory for the 13 +LibreMetaverse library assemblies at the pinned upstream commit. It contains: + +- stable C# documentation IDs and complete public type/member metadata; +- nullability, constraints, bases, interfaces, overload parameters, accessors, + constants, events, delegates, enum values, and public attributes; +- assembly identities and independent reflection/ECMA-335 count checks; +- hashes for the outputs of all six upstream source generators; +- `external_types`, the non-LibreMetaverse types used by public signatures and + every LibreMetaverse API that uses them. + +External entries are replacement obligations, not copied dependency APIs. +Issue #3 must map each one to a Rust crate/path: use Rust core/std or an adopted +crate where it preserves the contract, otherwise define a native MetaCrate +type. The catalog deliberately does not enumerate members of SkiaSharp, +SIPSorcery, MessagePack, CoreJ2K, or any other external assembly. + +Regenerate from the clean pinned upstream checkout: + +```sh +python3 tools/extract_public_api.py +``` + +The command builds the upstream libraries into a temporary directory, runs the +extractor twice against the same compiled metadata, rejects count mismatches or +duplicate documentation IDs, and writes the result only when both outputs are +byte-identical. The extractor is development-only and is absent from every +Cargo manifest and published Rust dependency graph. diff --git a/api/public-api.json b/api/public-api.json new file mode 100644 index 0000000..9f50b46 --- /dev/null +++ b/api/public-api.json @@ -0,0 +1,1296068 @@ +{ + "schema_version": 1, + "upstream": { + "repository": "https://github.com/cinderblocks/libremetaverse", + "commit": "2aa70bb68513b39795da5d13c88f31b86e85a3ba", + "target_framework": "net10.0" + }, + "source_generators": [ + { + "name": "AttentionsGenerator", + "outputs": [ + { + "path": "AttentionsGenerator/AttentionsGenerator.AttentionsGenerator/LindenAttentions.g.cs", + "sha256": "9d0a6d782bbbfb520045dfe3c14171564ae32734dfb4d83bc2a83477a74a7a9b" + } + ] + }, + { + "name": "GenepoolGenerator", + "outputs": [ + { + "path": "GenepoolGenerator/GenepoolGenerator.GenepoolGenerator/Genepool.g.cs", + "sha256": "204e862045714c90e6d3ccfeea718d81dd9a2ff20231edd25a599bf5a966688c" + } + ] + }, + { + "name": "PacketSourceGenerator", + "outputs": [ + { + "path": "PacketSourceGenerator/PacketSourceGenerator.PacketSourceGenerator/Packets.g.cs", + "sha256": "fac8cf985abd8e307531fd0e373b8bec7028988f7b6bcd2741820c2f497ce6cf" + } + ] + }, + { + "name": "SkeletonGenerator", + "outputs": [ + { + "path": "SkeletonGenerator/SkeletonGenerator.SkeletonGenerator/LindenSkeletonDefault.g.cs", + "sha256": "e84dad72b9802d2c1e951235ba871143fab5dcc79efccb0edbc5728150e9d3e6" + } + ] + }, + { + "name": "TreesGenerator", + "outputs": [ + { + "path": "TreesGenerator/TreesGenerator.TreesGenerator/GrassDefinitions.g.cs", + "sha256": "9a80986e459bbe76295c26585c73943ffdcef8799a059f4bd7e5c9ee73f12b70" + }, + { + "path": "TreesGenerator/TreesGenerator.TreesGenerator/TreeDefinitions.g.cs", + "sha256": "4400849b9b1d8cabc50e2d51a2541c994bd59e3f9f3c25be7c1937a51632d6de" + } + ] + }, + { + "name": "VisualParamGenerator", + "outputs": [ + { + "path": "VisualParamGenerator/VisualParamGenerator.VisualParamGenerator/VisualParams.g.cs", + "sha256": "64e1c161f0fb522b32f158813666590533d3c7c7c114b6540bd2c4ad667d7920" + } + ] + } + ], + "summary": { + "assembly_count": 13, + "source_generator_count": 6, + "public_type_count": 3066, + "public_member_count": 30789, + "external_type_count": 142 + }, + "assemblies": [ + { + "identity": { + "name": "LibreMetaverse", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "3405d61a-dc04-4189-ae5f-fa8e3d6141bf", + "file": "LibreMetaverse.dll", + "sha256": "c90234427ceb9a77719109edb5dcc1863e7fe650a4ba48c13327c06dab807ee2" + }, + "counts": { + "catalog_types": 2711, + "catalog_members": 27281, + "metadata_types": 2711, + "metadata_members": 27281 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.AISResponseMeta", + "namespace": "LibreMetaverse", + "name": "AISResponseMeta", + "signature": "LibreMetaverse.AISResponseMeta", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AISResponseMeta.Empty", + "kind": "field", + "name": "Empty", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AISResponseMeta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AISResponseMeta.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "kind": "constructor", + "name": "AISResponseMeta", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "brokenLinks", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "items", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "categories", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "versions", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AISResponseMeta.BrokenLinksRemoved", + "kind": "property", + "name": "BrokenLinksRemoved", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AISResponseMeta.CategoriesRemoved", + "kind": "property", + "name": "CategoriesRemoved", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AISResponseMeta.CategoryVersionUpdates", + "kind": "property", + "name": "CategoryVersionUpdates", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AISResponseMeta.HasAnyData", + "kind": "property", + "name": "HasAnyData", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AISResponseMeta.ItemsRemoved", + "kind": "property", + "name": "ItemsRemoved", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AccessDeniedReason", + "namespace": "LibreMetaverse", + "name": "AccessDeniedReason", + "signature": "LibreMetaverse.AccessDeniedReason", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AccessDeniedReason.BannedFromParcel", + "kind": "enum_value", + "name": "BannedFromParcel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessDeniedReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessDeniedReason", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessDeniedReason.NoAccess", + "kind": "enum_value", + "name": "NoAccess", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessDeniedReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessDeniedReason", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessDeniedReason.NotAgeVerified", + "kind": "enum_value", + "name": "NotAgeVerified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessDeniedReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessDeniedReason", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessDeniedReason.NotDenied", + "kind": "enum_value", + "name": "NotDenied", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessDeniedReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessDeniedReason", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessDeniedReason.NotInGroup", + "kind": "enum_value", + "name": "NotInGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessDeniedReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessDeniedReason", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessDeniedReason.NotOnAllowList", + "kind": "enum_value", + "name": "NotOnAllowList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessDeniedReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessDeniedReason", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AccessList", + "namespace": "LibreMetaverse", + "name": "AccessList", + "signature": "LibreMetaverse.AccessList", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AccessList.Access", + "kind": "enum_value", + "name": "Access", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessList", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessList", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessList.Ban", + "kind": "enum_value", + "name": "Ban", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessList", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessList", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AccessList.Both", + "kind": "enum_value", + "name": "Both", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AccessList", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AccessList", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AccountLevelBenefits", + "namespace": "LibreMetaverse", + "name": "AccountLevelBenefits", + "signature": "LibreMetaverse.AccountLevelBenefits", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AccountLevelBenefits.#ctor(LibreMetaverse.StructuredData.OSDMap)", + "kind": "constructor", + "name": "AccountLevelBenefits", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AccountLevelBenefits.#ctor(System.Collections.Hashtable)", + "kind": "constructor", + "name": "AccountLevelBenefits", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.AnimatedObjectLimit", + "kind": "property", + "name": "AnimatedObjectLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.AnimationUploadCost", + "kind": "property", + "name": "AnimationUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.AttachmentLimit", + "kind": "property", + "name": "AttachmentLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.BetaGridLand", + "kind": "property", + "name": "BetaGridLand", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.CreateGroupCost", + "kind": "property", + "name": "CreateGroupCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.CreateRepeatingEvents", + "kind": "property", + "name": "CreateRepeatingEvents", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.EstateAccessToken", + "kind": "property", + "name": "EstateAccessToken", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.GridwideExperienceLimit", + "kind": "property", + "name": "GridwideExperienceLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.GroupMembershipLimit", + "kind": "property", + "name": "GroupMembershipLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LandAuctionsAllowed", + "kind": "property", + "name": "LandAuctionsAllowed", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LargeTextureUploadCost", + "kind": "property", + "name": "LargeTextureUploadCost", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LastnameChangeAllowed", + "kind": "property", + "name": "LastnameChangeAllowed", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LastnameChangeCost", + "kind": "property", + "name": "LastnameChangeCost", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LastnameChangeRate", + "kind": "property", + "name": "LastnameChangeRate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LindenBuyFee", + "kind": "property", + "name": "LindenBuyFee", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LiveChat", + "kind": "property", + "name": "LiveChat", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.LocalExperiences", + "kind": "property", + "name": "LocalExperiences", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.MainlandTier", + "kind": "property", + "name": "MainlandTier", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.MarketplaceConciergeSupport", + "kind": "property", + "name": "MarketplaceConciergeSupport", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.MarketplaceListingLimit", + "kind": "property", + "name": "MarketplaceListingLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.MarketplacePleLimit", + "kind": "property", + "name": "MarketplacePleLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.MeshUploadCost", + "kind": "property", + "name": "MeshUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.ObjectAccountLevel", + "kind": "property", + "name": "ObjectAccountLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.OneTimeEventAllowed", + "kind": "property", + "name": "OneTimeEventAllowed", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.OneTimeEventCost", + "kind": "property", + "name": "OneTimeEventCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PartnerFee", + "kind": "property", + "name": "PartnerFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PhoneSupport", + "kind": "property", + "name": "PhoneSupport", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PicksLimit", + "kind": "property", + "name": "PicksLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PlacePages", + "kind": "property", + "name": "PlacePages", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PremiumAccess", + "kind": "property", + "name": "PremiumAccess", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PremiumAlts", + "kind": "property", + "name": "PremiumAlts", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PremiumGifts", + "kind": "property", + "name": "PremiumGifts", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.PriorityEntry", + "kind": "property", + "name": "PriorityEntry", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.RepeatingEventsCost", + "kind": "property", + "name": "RepeatingEventsCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.ScriptLimit", + "kind": "property", + "name": "ScriptLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.SignupBonus", + "kind": "property", + "name": "SignupBonus", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.SoundUploadCost", + "kind": "property", + "name": "SoundUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.Stipend", + "kind": "property", + "name": "Stipend", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.StoredImLimit", + "kind": "property", + "name": "StoredImLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.TextureUploadCost", + "kind": "property", + "name": "TextureUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.TransactionHistoryLimit", + "kind": "property", + "name": "TransactionHistoryLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.UnpartnerFee", + "kind": "property", + "name": "UnpartnerFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.UseAnimesh", + "kind": "property", + "name": "UseAnimesh", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AccountLevelBenefits.VoiceMorphing", + "kind": "property", + "name": "VoiceMorphing", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentAccessEventArgs", + "namespace": "LibreMetaverse", + "name": "AgentAccessEventArgs", + "signature": "LibreMetaverse.AgentAccessEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentAccessEventArgs.#ctor(System.Boolean,System.String)", + "kind": "constructor", + "name": "AgentAccessEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newLevel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentAccessEventArgs.NewLevel", + "kind": "property", + "name": "NewLevel", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentAccessEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentCachedBakesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AgentCachedBakesReplyEventArgs", + "signature": "LibreMetaverse.AgentCachedBakesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentCachedBakesReplyEventArgs.#ctor", + "kind": "constructor", + "name": "AgentCachedBakesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentDataReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AgentDataReplyEventArgs", + "signature": "LibreMetaverse.AgentDataReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentDataReplyEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.GroupPowers,System.String)", + "kind": "constructor", + "name": "AgentDataReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "activeGroupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupTitle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupPowers", + "type": "LibreMetaverse.GroupPowers", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.ActiveGroupID", + "kind": "property", + "name": "ActiveGroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.FirstName", + "kind": "property", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.GroupName", + "kind": "property", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.GroupPowers", + "kind": "property", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.GroupTitle", + "kind": "property", + "name": "GroupTitle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.LastName", + "kind": "property", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentDisplayName", + "namespace": "LibreMetaverse", + "name": "AgentDisplayName", + "signature": "LibreMetaverse.AgentDisplayName", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentDisplayName.#ctor", + "kind": "constructor", + "name": "AgentDisplayName", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentDisplayName.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentDisplayName", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentDisplayName.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentDisplayName.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.DisplayName", + "kind": "property", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.ID", + "kind": "property", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.IsDefaultDisplayName", + "kind": "property", + "name": "IsDefaultDisplayName", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.LegacyFirstName", + "kind": "property", + "name": "LegacyFirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.LegacyFullName", + "kind": "property", + "name": "LegacyFullName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.LegacyLastName", + "kind": "property", + "name": "LegacyLastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.NextUpdate", + "kind": "property", + "name": "NextUpdate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.Updated", + "kind": "property", + "name": "Updated", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentDisplayName.UserName", + "kind": "property", + "name": "UserName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentExperiencesEventArgs", + "namespace": "LibreMetaverse", + "name": "AgentExperiencesEventArgs", + "signature": "LibreMetaverse.AgentExperiencesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentExperiencesEventArgs.#ctor(LibreMetaverse.Messages.Linden.ExperienceListMessage)", + "kind": "constructor", + "name": "AgentExperiencesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentExperiences", + "type": "LibreMetaverse.Messages.Linden.ExperienceListMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentExperiencesEventArgs.AgentExperiences", + "kind": "property", + "name": "AgentExperiences", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceListMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentFlags", + "namespace": "LibreMetaverse", + "name": "AgentFlags", + "signature": "LibreMetaverse.AgentFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentFlags.HideTitle", + "kind": "enum_value", + "name": "HideTitle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentFlags", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentFlags", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentManager", + "namespace": "LibreMetaverse", + "name": "AgentManager", + "signature": "LibreMetaverse.AgentManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.AgentManager.AgentDataReply", + "kind": "event", + "name": "AgentDataReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AgentDataReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.AgentExperiencesUpdated", + "kind": "event", + "name": "AgentExperiencesUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AgentExperiencesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.AgentPreferencesUpdated", + "kind": "event", + "name": "AgentPreferencesUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AgentPreferencesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.AlertMessage", + "kind": "event", + "name": "AlertMessage", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AlertMessageEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.AnimationsChanged", + "kind": "event", + "name": "AnimationsChanged", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AnimationsChangedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.AvatarRenderInfoUpdated", + "kind": "event", + "name": "AvatarRenderInfoUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarRenderInfoEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.AvatarSitResponse", + "kind": "event", + "name": "AvatarSitResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarSitResponseEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.CameraConstraint", + "kind": "event", + "name": "CameraConstraint", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.CameraConstraintEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ChatFromSimulator", + "kind": "event", + "name": "ChatFromSimulator", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ChatEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ChatSessionMemberAdded", + "kind": "event", + "name": "ChatSessionMemberAdded", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ChatSessionMemberAddedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ChatSessionMemberLeft", + "kind": "event", + "name": "ChatSessionMemberLeft", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ChatSessionMemberLeftEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ExperienceInfoReceived", + "kind": "event", + "name": "ExperienceInfoReceived", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ExperienceInfoEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ExperiencePreferencesUpdated", + "kind": "event", + "name": "ExperiencePreferencesUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ExperiencePreferencesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.GroupChatJoined", + "kind": "event", + "name": "GroupChatJoined", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupChatJoinedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.IM", + "kind": "event", + "name": "IM", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.InstantMessageEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.LoadURL", + "kind": "event", + "name": "LoadURL", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.LoadUrlEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.MeanCollision", + "kind": "event", + "name": "MeanCollision", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.MeanCollisionEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.MoneyBalance", + "kind": "event", + "name": "MoneyBalance", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.BalanceEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.MoneyBalanceReply", + "kind": "event", + "name": "MoneyBalanceReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.MoneyBalanceReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.MuteListUpdated", + "kind": "event", + "name": "MuteListUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CSystem.EventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.NavMeshStatusUpdate", + "kind": "event", + "name": "NavMeshStatusUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.NavMeshStatusUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ProductInfoUpdated", + "kind": "event", + "name": "ProductInfoUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ProductInfoEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.RegionCrossed", + "kind": "event", + "name": "RegionCrossed", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RegionCrossedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.RegionCrossingPredicted", + "kind": "event", + "name": "RegionCrossingPredicted", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RegionCrossingPredictionEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.RegionExperiencesUpdated", + "kind": "event", + "name": "RegionExperiencesUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RegionExperiencesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ScriptControlChange", + "kind": "event", + "name": "ScriptControlChange", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ScriptControlEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ScriptDialog", + "kind": "event", + "name": "ScriptDialog", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ScriptDialogEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ScriptQuestion", + "kind": "event", + "name": "ScriptQuestion", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ScriptQuestionEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ScriptSensorReply", + "kind": "event", + "name": "ScriptSensorReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ScriptSensorReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.SetDisplayNameReply", + "kind": "event", + "name": "SetDisplayNameReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SetDisplayNameReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.TeleportProgress", + "kind": "event", + "name": "TeleportProgress", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.TeleportEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AgentManager.ViewerBenefitsUpdated", + "kind": "event", + "name": "ViewerBenefitsUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ViewerBenefitsEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentStateStatus", + "kind": "field", + "name": "AgentStateStatus", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AgentStateUpdateMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.GroupChatSessions", + "kind": "field", + "name": "GroupChatSessions", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, System.Collections.Generic.List\u003CLibreMetaverse.ChatSessionMember\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.MaxChatMessageSize", + "kind": "constant", + "name": "MaxChatMessageSize", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "1023" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.MaxScriptDialogLabelSize", + "kind": "constant", + "name": "MaxScriptDialogLabelSize", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "254" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.Movement", + "kind": "field", + "name": "Movement", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.AgentMovement", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.MuteList", + "kind": "field", + "name": "MuteList", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.String, LibreMetaverse.MuteEntry\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.SignaledAnimations", + "kind": "field", + "name": "SignaledAnimations", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.TOUCH_INVALID_TEXCOORD", + "kind": "field", + "name": "TOUCH_INVALID_TEXCOORD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.TOUCH_INVALID_VECTOR", + "kind": "field", + "name": "TOUCH_INVALID_VECTOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AgentManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.ActivateGesture(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "ActivateGesture", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "invID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Animate(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean},System.Boolean)", + "kind": "method", + "name": "Animate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "animations", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AnimationStart(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "AnimationStart", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "animation", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AnimationStop(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "AnimationStop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "animation", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.Double,System.Double,System.Double)", + "kind": "method", + "name": "AutoPilot", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalX", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalY", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.UInt64,System.UInt64,System.Single)", + "kind": "method", + "name": "AutoPilot", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalX", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalY", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AutoPilotCancel", + "kind": "method", + "name": "AutoPilotCancel", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AutoPilotLocal(System.Int32,System.Int32,System.Single)", + "kind": "method", + "name": "AutoPilotLocal", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "localX", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localY", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.BeamEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.Color4,System.Single,LibreMetaverse.UUID)", + "kind": "method", + "name": "BeamEffect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceAvatar", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetObject", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalOffset", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "color", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "duration", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "effectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.CancelCrossing", + "kind": "method", + "name": "CancelCrossing", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Chat(System.String,System.Int32,LibreMetaverse.ChatType,System.Boolean)", + "kind": "method", + "name": "Chat", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ChatType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "splitLargeMessages", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.ChatterBoxAcceptInviteAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "ChatterBoxAcceptInviteAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "session_id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CChatterBoxAcceptInviteAsync\u003Ed__17" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.CompleteAgentMovement(LibreMetaverse.Simulator)", + "kind": "method", + "name": "CompleteAgentMovement", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Crouch(System.Boolean)", + "kind": "method", + "name": "Crouch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "crouching", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32)", + "kind": "method", + "name": "DeGrab", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "DeGrab", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uvCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "stCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "binormal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.DeactivateGesture(LibreMetaverse.UUID)", + "kind": "method", + "name": "DeactivateGesture", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "invID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.DeleteClassified(LibreMetaverse.UUID)", + "kind": "method", + "name": "DeleteClassified", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "classifiedID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.FindExperienceByNameAsync(System.String,System.Int32,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "FindExperienceByNameAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceInfoMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "query", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "page", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "pageSize", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "30" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CFindExperienceByNameAsync\u003Ed__417" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Fly(System.Boolean)", + "kind": "method", + "name": "Fly", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "start", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.ForgetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "ForgetExperiencePermissionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CForgetExperiencePermissionAsync\u003Ed__425" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetAdminExperiencesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAdminExperiencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetAdminExperiencesAsync\u003Ed__418" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetAgentExperiencePermissionsAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAgentExperiencePermissionsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperiencePreferencesMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetAgentExperiencePermissionsAsync\u003Ed__420" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetAgentExperiencesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAgentExperiencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetAgentExperiencesAsync\u003Ed__415" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetAgentPreferencesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAgentPreferencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.AgentPreferencesMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetAgentPreferencesAsync\u003Ed__364" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetAttachmentResourcesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAttachmentResourcesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.AttachmentResourcesMessage\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "info" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetAttachmentResourcesAsync\u003Ed__357" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetAvatarRenderInfoAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAvatarRenderInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.AvatarRenderInfoMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetAvatarRenderInfoAsync\u003Ed__365" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetCreatorExperiencesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCreatorExperiencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetCreatorExperiencesAsync\u003Ed__419" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetCrossingDetails", + "kind": "method", + "name": "GetCrossingDetails", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetCrossingFailureReason", + "kind": "method", + "name": "GetCrossingFailureReason", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetCrossingState", + "kind": "method", + "name": "GetCrossingState", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetExperienceInfoAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "GetExperienceInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceInfoMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceIds", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetExperienceInfoAsync\u003Ed__416" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetExperiencePermissionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetExperiencePermissionAsync\u003Ed__423" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePreferencesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetExperiencePreferencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperiencePreferencesMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetExperiencePreferencesAsync\u003Ed__421" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetGroupExperiencesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetGroupExperiencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetGroupExperiencesAsync\u003Ed__427" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetProductInfoAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetProductInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ProductInfoRequestMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetProductInfoAsync\u003Ed__371" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetRegionExperiencesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetRegionExperiencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.RegionExperiencesMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetRegionExperiencesAsync\u003Ed__431" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetSimulatorsForObject(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetSimulatorsForObject", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Simulator\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GetViewerBenefitsAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetViewerBenefitsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ViewerBenefitsMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CGetViewerBenefitsAsync\u003Ed__361" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "GiveAvatarMoney", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "kind": "method", + "name": "GiveAvatarMoney", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "GiveGroupMoney", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "kind": "method", + "name": "GiveGroupMoney", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GiveMoney(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.MoneyTransactionType,LibreMetaverse.TransactionFlags)", + "kind": "method", + "name": "GiveMoney", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.MoneyTransactionType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.TransactionFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GiveObjectMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "kind": "method", + "name": "GiveObjectMoney", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GoHomeAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GoHomeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32)", + "kind": "method", + "name": "Grab", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Grab", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "grabOffset", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uvCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "stCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "binormal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GrabUpdate(LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "kind": "method", + "name": "GrabUpdate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "grabPosition", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GrabUpdate(LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "GrabUpdate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "grabPosition", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "grabOffset", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uvCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "stCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "binormal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.GroupInviteRespond(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "GroupInviteRespond", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accept", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "InstantMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "kind": "method", + "name": "InstantMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.InstantMessageDialog,LibreMetaverse.InstantMessageOnline,LibreMetaverse.Vector3,LibreMetaverse.UUID,System.Byte[])", + "kind": "method", + "name": "InstantMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dialog", + "type": "LibreMetaverse.InstantMessageDialog", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offline", + "type": "LibreMetaverse.InstantMessageOnline", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "binaryBucket", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID[])", + "kind": "method", + "name": "InstantMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "conferenceIDs", + "type": "LibreMetaverse.UUID[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "InstantMessageGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(System.String,LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "InstantMessageGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.IsCrossing", + "kind": "method", + "name": "IsCrossing", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.IsExperienceAdminAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "IsExperienceAdminAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CIsExperienceAdminAsync\u003Ed__429" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.IsExperienceContributorAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "IsExperienceContributorAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CIsExperienceContributorAsync\u003Ed__430" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.IsGroupMessage(LibreMetaverse.InstantMessage)", + "kind": "method", + "name": "IsGroupMessage", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "LibreMetaverse.InstantMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "kind": "method", + "name": "IsNearBorder", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionSizeX", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionSizeY", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "threshold", + "type": "System.Single", + "passing": "value", + "optional": true, + "default": { + "type": "System.Single", + "value": "32" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Jump(System.Boolean)", + "kind": "method", + "name": "Jump", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "jumping", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.LookAtEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.LookAtType,LibreMetaverse.UUID)", + "kind": "method", + "name": "LookAtEffect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceAvatar", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetObject", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalOffset", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.LookAtType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "effectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.ModerateChatSessions(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "ModerateChatSessions", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "memberID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "moderate", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee", + "kind": "method", + "name": "PayUploadFee", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee(System.Int32)", + "kind": "method", + "name": "PayUploadFee", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee(System.String)", + "kind": "method", + "name": "PayUploadFee", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PickDelete(LibreMetaverse.UUID)", + "kind": "method", + "name": "PickDelete", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pickID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PickInfoUpdate(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID,System.String,LibreMetaverse.Vector3d,LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "PickInfoUpdate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pickID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "topPick", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parcelID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalPosition", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PlayGestureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "PlayGestureAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "gestureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PointAtEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.PointAtType,LibreMetaverse.UUID)", + "kind": "method", + "name": "PointAtEffect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceAvatar", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetObject", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalOffset", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.PointAtType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "effectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "kind": "method", + "name": "PostAvatarRenderInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agents", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.ValueTuple\u003CSystem.Int32, System.Boolean\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Weight" + }, + { + "type": "System.String", + "value": "TooComplex" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CPostAvatarRenderInfoAsync\u003Ed__367" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Int32,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "PostAvatarRenderInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "weight", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tooComplex", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CPostAvatarRenderInfoAsync\u003Ed__366" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "QueryExperiencesOnParcelAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelLocalId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "experienceIds", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CQueryExperiencesOnParcelAsync\u003Ed__432" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RemoveMuteListEntry(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "RemoveMuteListEntry", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.ReplyToScriptDialog(System.Int32,System.Int32,System.String,LibreMetaverse.UUID)", + "kind": "method", + "name": "ReplyToScriptDialog", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "buttonIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "buttonLabel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestBalance", + "kind": "method", + "name": "RequestBalance", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestJoinGroupChat(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestJoinGroupChat", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestLeaveGroupChat(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestLeaveGroupChat", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestMuteList", + "kind": "method", + "name": "RequestMuteList", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestNavMeshGenerationStatusAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestNavMeshGenerationStatusAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CRequestNavMeshGenerationStatusAsync\u003Ed__368" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestNavMeshRebakeAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestNavMeshRebakeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CRequestNavMeshRebakeAsync\u003Ed__369" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestScriptSensor(System.String,LibreMetaverse.UUID,LibreMetaverse.ScriptSensorTypeFlags,System.Single,System.Single,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "RequestScriptSensor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "searchID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "range", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "arc", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "requestID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestSit(LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "kind": "method", + "name": "RequestSit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offset", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestTeleport", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "landmark", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3)", + "kind": "method", + "name": "RequestTeleport", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "kind": "method", + "name": "RequestTeleport", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lookAt", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ignoreCapsStatus", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.RetrieveInstantMessagesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "RetrieveInstantMessagesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CRetrieveInstantMessagesAsync\u003Ed__6" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.ScriptQuestionReply(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.ScriptPermission)", + "kind": "method", + "name": "ScriptQuestionReply", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "permissions", + "type": "LibreMetaverse.ScriptPermission", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendPostcardAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "jpegImageData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "toEmail", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fromName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "subject", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalPosition", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSendPostcardAsync\u003Ed__362" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLure(LibreMetaverse.UUID)", + "kind": "method", + "name": "SendTeleportLure", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLure(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "SendTeleportLure", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID)", + "kind": "method", + "name": "SendTeleportLureRequest", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "SendTeleportLureRequest", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "SendTeleportLureRequest", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SendViewerStatsAsync(LibreMetaverse.Messages.Linden.ViewerStatsMessage,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendViewerStatsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stats", + "type": "LibreMetaverse.Messages.Linden.ViewerStatsMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSendViewerStatsAsync\u003Ed__370" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetAgentAccessAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetAgentAccessAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.AgentAccessEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "access", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSetAgentAccessAsync\u003Ed__360" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetDisplayNameAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetDisplayNameAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "oldName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSetDisplayNameAsync\u003Ed__358" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePermissionAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetExperiencePermissionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "permission", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSetExperiencePermissionAsync\u003Ed__424" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePreferencesAsync(LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetExperiencePreferencesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "preferences", + "type": "LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSetExperiencePreferencesAsync\u003Ed__422" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetHeightWidth(System.UInt16,System.UInt16)", + "kind": "method", + "name": "SetHeightWidth", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "height", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "width", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetHome", + "kind": "method", + "name": "SetHome", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SetHoverHeightAsync(System.Double,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetHoverHeightAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "hoverHeight", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CSetHoverHeightAsync\u003Ed__363" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Sit", + "kind": "method", + "name": "Sit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SitOnGround", + "kind": "method", + "name": "SitOnGround", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.SphereEffect(LibreMetaverse.Vector3d,LibreMetaverse.Color4,System.Single,LibreMetaverse.UUID)", + "kind": "method", + "name": "SphereEffect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalOffset", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "color", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "duration", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "effectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Stand", + "kind": "method", + "name": "Stand", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.StartIMConferenceAsync(System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "StartIMConferenceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "participants", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "tmp_session_id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CStartIMConferenceAsync\u003Ed__18" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "TeleportAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "landmark", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CTeleportAsync\u003Ed__579" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "kind": "method", + "name": "TeleportAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lookAt", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CTeleportAsync\u003Ed__583" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "kind": "method", + "name": "TeleportAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "kind": "method", + "name": "TeleportAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lookAt", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CTeleportAsync\u003Ed__581" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "kind": "method", + "name": "TeleportAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportFailedEventHandler(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "kind": "method", + "name": "TeleportFailedEventHandler", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "messageKey", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "LibreMetaverse.Interfaces.IMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TeleportLureRespond(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "TeleportLureRespond", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requesterID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accept", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.Touch(System.UInt32)", + "kind": "method", + "name": "Touch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.TrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "TrackObjectInSimulator", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UntrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "UntrackObjectInSimulator", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateAgentLanguageAsync(System.String,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateAgentLanguageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "language", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isPublic", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CUpdateAgentLanguageAsync\u003Ed__359" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Vector3d,System.String,System.String,System.Boolean)", + "kind": "method", + "name": "UpdateClassifiedInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "classifiedID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snapshotID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "price", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "desc", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "autoRenew", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,System.String,System.String,System.Boolean)", + "kind": "method", + "name": "UpdateClassifiedInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "classifiedID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snapshotID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "price", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "desc", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "autoRenew", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateExperienceAsync(LibreMetaverse.Messages.Linden.ExperienceInfo,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateExperienceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceInfo\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "info", + "type": "LibreMetaverse.Messages.Linden.ExperienceInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CUpdateExperienceAsync\u003Ed__428" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateInterests(LibreMetaverse.Avatar.Interests)", + "kind": "method", + "name": "UpdateInterests", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "interests", + "type": "LibreMetaverse.Avatar.Interests", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateMuteListEntry(LibreMetaverse.MuteType,LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "UpdateMuteListEntry", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.MuteType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateMuteListEntry(LibreMetaverse.MuteType,LibreMetaverse.UUID,System.String,LibreMetaverse.MuteFlags)", + "kind": "method", + "name": "UpdateMuteListEntry", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.MuteType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.MuteFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateProfile(LibreMetaverse.Avatar.AvatarProperties)", + "kind": "method", + "name": "UpdateProfile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "profile", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileAsync(LibreMetaverse.Avatar.AvatarProperties,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateProfileAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "profile", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CUpdateProfileAsync\u003Ed__544" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotes(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "UpdateProfileNotes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notes", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotesAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateProfileNotesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notes", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AgentManager.\u003CUpdateProfileNotesAsync\u003Ed__547" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileUdp(LibreMetaverse.Avatar.AvatarProperties)", + "kind": "method", + "name": "UpdateProfileUdp", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "profile", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.Acceleration", + "kind": "property", + "name": "Acceleration", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.ActiveGestures", + "kind": "property", + "name": "ActiveGestures", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.ActiveGroup", + "kind": "property", + "name": "ActiveGroup", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.ActiveGroupPowers", + "kind": "property", + "name": "ActiveGroupPowers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentAccess", + "kind": "property", + "name": "AgentAccess", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentExperienceList", + "kind": "property", + "name": "AgentExperienceList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceListMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AngularVelocity", + "kind": "property", + "name": "AngularVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AvatarRenderInfo", + "kind": "property", + "name": "AvatarRenderInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.Balance", + "kind": "property", + "name": "Balance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.Benefits", + "kind": "property", + "name": "Benefits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AccountLevelBenefits", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.CollisionPlane", + "kind": "property", + "name": "CollisionPlane", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.ExperiencePreferences", + "kind": "property", + "name": "ExperiencePreferences", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.FirstName", + "kind": "property", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.GlobalPosition", + "kind": "property", + "name": "GlobalPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.Health", + "kind": "property", + "name": "Health", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.HomeLookAt", + "kind": "property", + "name": "HomeLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.HomePosition", + "kind": "property", + "name": "HomePosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.HomeRegionHandle", + "kind": "property", + "name": "HomeRegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.HoverHeight", + "kind": "property", + "name": "HoverHeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.LastName", + "kind": "property", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.LastNavMeshStatus", + "kind": "property", + "name": "LastNavMeshStatus", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.LastPositionUpdate", + "kind": "property", + "name": "LastPositionUpdate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.LastRegionExperiences", + "kind": "property", + "name": "LastRegionExperiences", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.RegionExperiencesMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.LocalID", + "kind": "property", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.LookAt", + "kind": "property", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.ProductInfo", + "kind": "property", + "name": "ProductInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ProductInfoRequestMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.RelativePosition", + "kind": "property", + "name": "RelativePosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.RelativePositionEstimate", + "kind": "property", + "name": "RelativePositionEstimate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.RelativeRotation", + "kind": "property", + "name": "RelativeRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.SecureSessionID", + "kind": "property", + "name": "SecureSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.SessionID", + "kind": "property", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.SimPosition", + "kind": "property", + "name": "SimPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.SimRotation", + "kind": "property", + "name": "SimRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.SittingOn", + "kind": "property", + "name": "SittingOn", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.StartLocation", + "kind": "property", + "name": "StartLocation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.TeleportMessage", + "kind": "property", + "name": "TeleportMessage", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.Velocity", + "kind": "property", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.ViewerBenefits", + "kind": "property", + "name": "ViewerBenefits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ViewerBenefitsMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentManager.AgentMovement", + "namespace": "LibreMetaverse", + "name": "AgentMovement", + "signature": "LibreMetaverse.AgentManager.AgentMovement", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.BodyRotation", + "kind": "field", + "name": "BodyRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.Camera", + "kind": "field", + "name": "Camera", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.AgentMovement.AgentCamera", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.HeadRotation", + "kind": "field", + "name": "HeadRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AgentMovement", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.ResetControlFlags", + "kind": "method", + "name": "ResetControlFlags", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendManualUpdate(LibreMetaverse.AgentManager.ControlFlags,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Quaternion,System.Single,LibreMetaverse.AgentFlags,LibreMetaverse.AgentState,System.Boolean)", + "kind": "method", + "name": "SendManualUpdate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "controlFlags", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forwardAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "leftAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bodyRotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "headRotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "farClip", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.AgentFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "LibreMetaverse.AgentState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendUpdate(System.Boolean)", + "kind": "method", + "name": "SendUpdate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendUpdate(System.Boolean,LibreMetaverse.Simulator)", + "kind": "method", + "name": "SendUpdate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SetFOVVerticalAngle(System.Single)", + "kind": "method", + "name": "SetFOVVerticalAngle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.TurnToward(LibreMetaverse.Vector3,System.Boolean)", + "kind": "method", + "name": "TurnToward", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sendUpdate", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.UpdateFromHeading(System.Double,System.Boolean)", + "kind": "method", + "name": "UpdateFromHeading", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "heading", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AgentControls", + "kind": "property", + "name": "AgentControls", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AlwaysRun", + "kind": "property", + "name": "AlwaysRun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AtNeg", + "kind": "property", + "name": "AtNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AtPos", + "kind": "property", + "name": "AtPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AutoResetControls", + "kind": "property", + "name": "AutoResetControls", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Away", + "kind": "property", + "name": "Away", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FastAt", + "kind": "property", + "name": "FastAt", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FastLeft", + "kind": "property", + "name": "FastLeft", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FastUp", + "kind": "property", + "name": "FastUp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FinishAnim", + "kind": "property", + "name": "FinishAnim", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Fly", + "kind": "property", + "name": "Fly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LButtonDown", + "kind": "property", + "name": "LButtonDown", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LButtonUp", + "kind": "property", + "name": "LButtonUp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LeftNeg", + "kind": "property", + "name": "LeftNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LeftPos", + "kind": "property", + "name": "LeftPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.MLButtonDown", + "kind": "property", + "name": "MLButtonDown", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.MLButtonUp", + "kind": "property", + "name": "MLButtonUp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Mouselook", + "kind": "property", + "name": "Mouselook", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeAtNeg", + "kind": "property", + "name": "NudgeAtNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeAtPos", + "kind": "property", + "name": "NudgeAtPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeLeftNeg", + "kind": "property", + "name": "NudgeLeftNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeLeftPos", + "kind": "property", + "name": "NudgeLeftPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeUpNeg", + "kind": "property", + "name": "NudgeUpNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeUpPos", + "kind": "property", + "name": "NudgeUpPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.PitchNeg", + "kind": "property", + "name": "PitchNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.PitchPos", + "kind": "property", + "name": "PitchPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.SitOnGround", + "kind": "property", + "name": "SitOnGround", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.StandUp", + "kind": "property", + "name": "StandUp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Stop", + "kind": "property", + "name": "Stop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.TurnLeft", + "kind": "property", + "name": "TurnLeft", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.TurnRight", + "kind": "property", + "name": "TurnRight", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpNeg", + "kind": "property", + "name": "UpNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpPos", + "kind": "property", + "name": "UpPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpdateEnabled", + "kind": "property", + "name": "UpdateEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpdateInterval", + "kind": "property", + "name": "UpdateInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.YawNeg", + "kind": "property", + "name": "YawNeg", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.YawPos", + "kind": "property", + "name": "YawPos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentManager.AgentMovement.AgentCamera", + "namespace": "LibreMetaverse", + "name": "AgentCamera", + "signature": "LibreMetaverse.AgentManager.AgentMovement.AgentCamera", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Far", + "kind": "field", + "name": "Far", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.#ctor", + "kind": "constructor", + "name": "AgentCamera", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upDirection", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookDirection", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookDirection", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upDirection", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(System.Double)", + "kind": "method", + "name": "LookDirection", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "heading", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Pitch(System.Single)", + "kind": "method", + "name": "Pitch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Roll(System.Single)", + "kind": "method", + "name": "Roll", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.SetPositionOrientation(LibreMetaverse.Vector3,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "SetPositionOrientation", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roll", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pitch", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yaw", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Yaw(System.Single)", + "kind": "method", + "name": "Yaw", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.AtAxis", + "kind": "property", + "name": "AtAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LeftAxis", + "kind": "property", + "name": "LeftAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.UpAxis", + "kind": "property", + "name": "UpAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentManager.ControlFlags", + "namespace": "LibreMetaverse", + "name": "ControlFlags", + "signature": "LibreMetaverse.AgentManager.ControlFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_AT_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_AT_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_AT_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_AT_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_AWAY", + "kind": "enum_value", + "name": "AGENT_CONTROL_AWAY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "134217728" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_FAST_AT", + "kind": "enum_value", + "name": "AGENT_CONTROL_FAST_AT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_FAST_LEFT", + "kind": "enum_value", + "name": "AGENT_CONTROL_FAST_LEFT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_FAST_UP", + "kind": "enum_value", + "name": "AGENT_CONTROL_FAST_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_FINISH_ANIM", + "kind": "enum_value", + "name": "AGENT_CONTROL_FINISH_ANIM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "32768" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_FLY", + "kind": "enum_value", + "name": "AGENT_CONTROL_FLY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "8192" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_LBUTTON_DOWN", + "kind": "enum_value", + "name": "AGENT_CONTROL_LBUTTON_DOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "268435456" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_LBUTTON_UP", + "kind": "enum_value", + "name": "AGENT_CONTROL_LBUTTON_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "536870912" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_LEFT_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_LEFT_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_LEFT_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_LEFT_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_ML_LBUTTON_DOWN", + "kind": "enum_value", + "name": "AGENT_CONTROL_ML_LBUTTON_DOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "1073741824" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_ML_LBUTTON_UP", + "kind": "enum_value", + "name": "AGENT_CONTROL_ML_LBUTTON_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "-2147483648" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_MOUSELOOK", + "kind": "enum_value", + "name": "AGENT_CONTROL_MOUSELOOK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "262144" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_NUDGE_AT_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_NUDGE_AT_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "1048576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_NUDGE_AT_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_NUDGE_AT_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "524288" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_NUDGE_LEFT_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_NUDGE_LEFT_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "4194304" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_NUDGE_LEFT_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_NUDGE_LEFT_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "2097152" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_NUDGE_UP_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_NUDGE_UP_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "16777216" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_NUDGE_UP_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_NUDGE_UP_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "8388608" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_PITCH_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_PITCH_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_PITCH_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_PITCH_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_SIT_ON_GROUND", + "kind": "enum_value", + "name": "AGENT_CONTROL_SIT_ON_GROUND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "131072" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_STAND_UP", + "kind": "enum_value", + "name": "AGENT_CONTROL_STAND_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_STOP", + "kind": "enum_value", + "name": "AGENT_CONTROL_STOP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "16384" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_TURN_LEFT", + "kind": "enum_value", + "name": "AGENT_CONTROL_TURN_LEFT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "33554432" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_TURN_RIGHT", + "kind": "enum_value", + "name": "AGENT_CONTROL_TURN_RIGHT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "67108864" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_UP_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_UP_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_UP_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_UP_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_YAW_NEG", + "kind": "enum_value", + "name": "AGENT_CONTROL_YAW_NEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.AGENT_CONTROL_YAW_POS", + "kind": "enum_value", + "name": "AGENT_CONTROL_YAW_POS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.ControlFlags.NONE", + "kind": "enum_value", + "name": "NONE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.ControlFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentManager.CrossingFailureReason", + "namespace": "LibreMetaverse", + "name": "CrossingFailureReason", + "signature": "LibreMetaverse.AgentManager.CrossingFailureReason", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.ConnectionFailed", + "kind": "enum_value", + "name": "ConnectionFailed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.InvalidData", + "kind": "enum_value", + "name": "InvalidData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.MaxRetriesExceeded", + "kind": "enum_value", + "name": "MaxRetriesExceeded", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.NetworkError", + "kind": "enum_value", + "name": "NetworkError", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.SimulatorRejected", + "kind": "enum_value", + "name": "SimulatorRejected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.Timeout", + "kind": "enum_value", + "name": "Timeout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingFailureReason.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingFailureReason", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentManager.CrossingState", + "namespace": "LibreMetaverse", + "name": "CrossingState", + "signature": "LibreMetaverse.AgentManager.CrossingState", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.Completed", + "kind": "enum_value", + "name": "Completed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.Connecting", + "kind": "enum_value", + "name": "Connecting", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.Failed", + "kind": "enum_value", + "name": "Failed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.Idle", + "kind": "enum_value", + "name": "Idle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.PreparingCross", + "kind": "enum_value", + "name": "PreparingCross", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.Recovering", + "kind": "enum_value", + "name": "Recovering", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentManager.CrossingState.WaitingForComplete", + "kind": "enum_value", + "name": "WaitingForComplete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.CrossingState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentManager.CrossingState", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentPreferencesEventArgs", + "namespace": "LibreMetaverse", + "name": "AgentPreferencesEventArgs", + "signature": "LibreMetaverse.AgentPreferencesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentPreferencesEventArgs.#ctor(LibreMetaverse.Messages.Linden.AgentPreferencesMessage)", + "kind": "constructor", + "name": "AgentPreferencesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "preferences", + "type": "LibreMetaverse.Messages.Linden.AgentPreferencesMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentPreferencesEventArgs.Preferences", + "kind": "property", + "name": "Preferences", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AgentPreferencesMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentSettings", + "namespace": "LibreMetaverse", + "name": "AgentSettings", + "signature": "LibreMetaverse.AgentSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentSettings.DisableUpdateDuplicateCheck", + "kind": "field", + "name": "DisableUpdateDuplicateCheck", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentSettings.MultipleSims", + "kind": "field", + "name": "MultipleSims", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentSettings.SendAppearance", + "kind": "field", + "name": "SendAppearance", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentSettings.SendThrottle", + "kind": "field", + "name": "SendThrottle", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentSettings.SendUpdates", + "kind": "field", + "name": "SendUpdates", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentSettings.SendUpdatesRegularly", + "kind": "field", + "name": "SendUpdatesRegularly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentSettings.#ctor", + "kind": "constructor", + "name": "AgentSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentState", + "namespace": "LibreMetaverse", + "name": "AgentState", + "signature": "LibreMetaverse.AgentState", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AgentState.Editing", + "kind": "enum_value", + "name": "Editing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentState", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentState.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentState", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AgentState.Typing", + "kind": "enum_value", + "name": "Typing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AgentState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AgentState", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentThrottle", + "namespace": "LibreMetaverse", + "name": "AgentThrottle", + "signature": "LibreMetaverse.AgentThrottle", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentThrottle.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AgentThrottle", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentThrottle.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "AgentThrottle", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentThrottle.Set", + "kind": "method", + "name": "Set", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AgentThrottle.Set(LibreMetaverse.Simulator)", + "kind": "method", + "name": "Set", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AgentThrottle.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Asset", + "kind": "property", + "name": "Asset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Cloud", + "kind": "property", + "name": "Cloud", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Land", + "kind": "property", + "name": "Land", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Resend", + "kind": "property", + "name": "Resend", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Task", + "kind": "property", + "name": "Task", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Texture", + "kind": "property", + "name": "Texture", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Total", + "kind": "property", + "name": "Total", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AgentThrottle.Wind", + "kind": "property", + "name": "Wind", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AgentWearablesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AgentWearablesReplyEventArgs", + "signature": "LibreMetaverse.AgentWearablesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AgentWearablesReplyEventArgs.#ctor", + "kind": "constructor", + "name": "AgentWearablesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AlertMessageEventArgs", + "namespace": "LibreMetaverse", + "name": "AlertMessageEventArgs", + "signature": "LibreMetaverse.AlertMessageEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AlertMessageEventArgs.#ctor(System.String,System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "constructor", + "name": "AlertMessageEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "notificationid", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "extraparams", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AlertMessageEventArgs.ExtraParams", + "kind": "property", + "name": "ExtraParams", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AlertMessageEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AlertMessageEventArgs.NotificationId", + "kind": "property", + "name": "NotificationId", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Animation", + "namespace": "LibreMetaverse", + "name": "Animation", + "signature": "LibreMetaverse.Animation", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Animation.AnimationID", + "kind": "field", + "name": "AnimationID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animation.AnimationSequence", + "kind": "field", + "name": "AnimationSequence", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animation.AnimationSourceObjectID", + "kind": "field", + "name": "AnimationSourceObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Animations", + "namespace": "LibreMetaverse", + "name": "Animations", + "signature": "LibreMetaverse.Animations", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Animations.AFRAID", + "kind": "field", + "name": "AFRAID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.AIM_BAZOOKA_R", + "kind": "field", + "name": "AIM_BAZOOKA_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.AIM_BOW_L", + "kind": "field", + "name": "AIM_BOW_L", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.AIM_HANDGUN_R", + "kind": "field", + "name": "AIM_HANDGUN_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.AIM_RIFLE_R", + "kind": "field", + "name": "AIM_RIFLE_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.ANGRY", + "kind": "field", + "name": "ANGRY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.AWAY", + "kind": "field", + "name": "AWAY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BACKFLIP", + "kind": "field", + "name": "BACKFLIP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BELLY_LAUGH", + "kind": "field", + "name": "BELLY_LAUGH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BLOW_KISS", + "kind": "field", + "name": "BLOW_KISS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BORED", + "kind": "field", + "name": "BORED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BOW", + "kind": "field", + "name": "BOW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BRUSH", + "kind": "field", + "name": "BRUSH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.BUSY", + "kind": "field", + "name": "BUSY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.CLAP", + "kind": "field", + "name": "CLAP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.COURTBOW", + "kind": "field", + "name": "COURTBOW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.CROUCH", + "kind": "field", + "name": "CROUCH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.CROUCHWALK", + "kind": "field", + "name": "CROUCHWALK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.CRY", + "kind": "field", + "name": "CRY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.CUSTOMIZE", + "kind": "field", + "name": "CUSTOMIZE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.CUSTOMIZE_DONE", + "kind": "field", + "name": "CUSTOMIZE_DONE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE1", + "kind": "field", + "name": "DANCE1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE2", + "kind": "field", + "name": "DANCE2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE3", + "kind": "field", + "name": "DANCE3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE4", + "kind": "field", + "name": "DANCE4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE5", + "kind": "field", + "name": "DANCE5", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE6", + "kind": "field", + "name": "DANCE6", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE7", + "kind": "field", + "name": "DANCE7", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DANCE8", + "kind": "field", + "name": "DANCE8", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DEAD", + "kind": "field", + "name": "DEAD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.DRINK", + "kind": "field", + "name": "DRINK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EMBARRASSED", + "kind": "field", + "name": "EMBARRASSED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_AFRAID", + "kind": "field", + "name": "EXPRESS_AFRAID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_ANGER", + "kind": "field", + "name": "EXPRESS_ANGER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_BORED", + "kind": "field", + "name": "EXPRESS_BORED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_CRY", + "kind": "field", + "name": "EXPRESS_CRY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_DISDAIN", + "kind": "field", + "name": "EXPRESS_DISDAIN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_EMBARRASSED", + "kind": "field", + "name": "EXPRESS_EMBARRASSED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_FROWN", + "kind": "field", + "name": "EXPRESS_FROWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_KISS", + "kind": "field", + "name": "EXPRESS_KISS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_LAUGH", + "kind": "field", + "name": "EXPRESS_LAUGH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_OPEN_MOUTH", + "kind": "field", + "name": "EXPRESS_OPEN_MOUTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_REPULSED", + "kind": "field", + "name": "EXPRESS_REPULSED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_SAD", + "kind": "field", + "name": "EXPRESS_SAD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_SHRUG", + "kind": "field", + "name": "EXPRESS_SHRUG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_SMILE", + "kind": "field", + "name": "EXPRESS_SMILE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_SURPRISE", + "kind": "field", + "name": "EXPRESS_SURPRISE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_TONGUE_OUT", + "kind": "field", + "name": "EXPRESS_TONGUE_OUT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_TOOTHSMILE", + "kind": "field", + "name": "EXPRESS_TOOTHSMILE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_WINK", + "kind": "field", + "name": "EXPRESS_WINK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.EXPRESS_WORRY", + "kind": "field", + "name": "EXPRESS_WORRY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.FALLDOWN", + "kind": "field", + "name": "FALLDOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.FEMALE_WALK", + "kind": "field", + "name": "FEMALE_WALK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.FINGER_WAG", + "kind": "field", + "name": "FINGER_WAG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.FIST_PUMP", + "kind": "field", + "name": "FIST_PUMP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.FLY", + "kind": "field", + "name": "FLY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.FLYSLOW", + "kind": "field", + "name": "FLYSLOW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HELLO", + "kind": "field", + "name": "HELLO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOLD_BAZOOKA_R", + "kind": "field", + "name": "HOLD_BAZOOKA_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOLD_BOW_L", + "kind": "field", + "name": "HOLD_BOW_L", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOLD_HANDGUN_R", + "kind": "field", + "name": "HOLD_HANDGUN_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOLD_RIFLE_R", + "kind": "field", + "name": "HOLD_RIFLE_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOLD_THROW_R", + "kind": "field", + "name": "HOLD_THROW_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOVER", + "kind": "field", + "name": "HOVER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOVER_DOWN", + "kind": "field", + "name": "HOVER_DOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.HOVER_UP", + "kind": "field", + "name": "HOVER_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.IMPATIENT", + "kind": "field", + "name": "IMPATIENT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.JUMP", + "kind": "field", + "name": "JUMP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.JUMP_FOR_JOY", + "kind": "field", + "name": "JUMP_FOR_JOY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.KISS_MY_BUTT", + "kind": "field", + "name": "KISS_MY_BUTT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.LAND", + "kind": "field", + "name": "LAND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.LAUGH_SHORT", + "kind": "field", + "name": "LAUGH_SHORT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.MEDIUM_LAND", + "kind": "field", + "name": "MEDIUM_LAND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.MOTORCYCLE_SIT", + "kind": "field", + "name": "MOTORCYCLE_SIT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.MUSCLE_BEACH", + "kind": "field", + "name": "MUSCLE_BEACH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.NO", + "kind": "field", + "name": "NO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.NO_UNHAPPY", + "kind": "field", + "name": "NO_UNHAPPY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.NYAH_NYAH", + "kind": "field", + "name": "NYAH_NYAH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.ONETWO_PUNCH", + "kind": "field", + "name": "ONETWO_PUNCH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.PEACE", + "kind": "field", + "name": "PEACE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.POINT_ME", + "kind": "field", + "name": "POINT_ME", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.POINT_YOU", + "kind": "field", + "name": "POINT_YOU", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.PRE_JUMP", + "kind": "field", + "name": "PRE_JUMP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.PUNCH_LEFT", + "kind": "field", + "name": "PUNCH_LEFT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.PUNCH_RIGHT", + "kind": "field", + "name": "PUNCH_RIGHT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.REPULSED", + "kind": "field", + "name": "REPULSED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.ROUNDHOUSE_KICK", + "kind": "field", + "name": "ROUNDHOUSE_KICK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.RPS_COUNTDOWN", + "kind": "field", + "name": "RPS_COUNTDOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.RPS_PAPER", + "kind": "field", + "name": "RPS_PAPER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.RPS_ROCK", + "kind": "field", + "name": "RPS_ROCK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.RPS_SCISSORS", + "kind": "field", + "name": "RPS_SCISSORS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.RUN", + "kind": "field", + "name": "RUN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SAD", + "kind": "field", + "name": "SAD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SALUTE", + "kind": "field", + "name": "SALUTE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SHOOT_BOW_L", + "kind": "field", + "name": "SHOOT_BOW_L", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SHOUT", + "kind": "field", + "name": "SHOUT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SHRUG", + "kind": "field", + "name": "SHRUG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SIT", + "kind": "field", + "name": "SIT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SIT_FEMALE", + "kind": "field", + "name": "SIT_FEMALE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SIT_GENERIC", + "kind": "field", + "name": "SIT_GENERIC", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SIT_GROUND", + "kind": "field", + "name": "SIT_GROUND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SIT_GROUND_staticRAINED", + "kind": "field", + "name": "SIT_GROUND_staticRAINED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SIT_TO_STAND", + "kind": "field", + "name": "SIT_TO_STAND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SLEEP", + "kind": "field", + "name": "SLEEP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SMOKE_IDLE", + "kind": "field", + "name": "SMOKE_IDLE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SMOKE_INHALE", + "kind": "field", + "name": "SMOKE_INHALE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SMOKE_THROW_DOWN", + "kind": "field", + "name": "SMOKE_THROW_DOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SNAPSHOT", + "kind": "field", + "name": "SNAPSHOT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STAND", + "kind": "field", + "name": "STAND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STANDUP", + "kind": "field", + "name": "STANDUP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STAND_1", + "kind": "field", + "name": "STAND_1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STAND_2", + "kind": "field", + "name": "STAND_2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STAND_3", + "kind": "field", + "name": "STAND_3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STAND_4", + "kind": "field", + "name": "STAND_4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STRETCH", + "kind": "field", + "name": "STRETCH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.STRIDE", + "kind": "field", + "name": "STRIDE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SURF", + "kind": "field", + "name": "SURF", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SURPRISE", + "kind": "field", + "name": "SURPRISE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.SWORD_STRIKE", + "kind": "field", + "name": "SWORD_STRIKE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.TALK", + "kind": "field", + "name": "TALK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.TANTRUM", + "kind": "field", + "name": "TANTRUM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.THROW_R", + "kind": "field", + "name": "THROW_R", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.TRYON_SHIRT", + "kind": "field", + "name": "TRYON_SHIRT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.TURNLEFT", + "kind": "field", + "name": "TURNLEFT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.TURNRIGHT", + "kind": "field", + "name": "TURNRIGHT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.TYPE", + "kind": "field", + "name": "TYPE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.WALK", + "kind": "field", + "name": "WALK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.WHISPER", + "kind": "field", + "name": "WHISPER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.WHISTLE", + "kind": "field", + "name": "WHISTLE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.WINK", + "kind": "field", + "name": "WINK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.WINK_HOLLYWOOD", + "kind": "field", + "name": "WINK_HOLLYWOOD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.WORRY", + "kind": "field", + "name": "WORRY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.YES", + "kind": "field", + "name": "YES", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.YES_HAPPY", + "kind": "field", + "name": "YES_HAPPY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animations.YOGA_FLOAT", + "kind": "field", + "name": "YOGA_FLOAT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Animations.ToDictionary", + "kind": "method", + "name": "ToDictionary", + "static": true, + "visibility": "public", + "type": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AnimationsChangedEventArgs", + "namespace": "LibreMetaverse", + "name": "AnimationsChangedEventArgs", + "signature": "LibreMetaverse.AnimationsChangedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AnimationsChangedEventArgs.#ctor(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "kind": "constructor", + "name": "AnimationsChangedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentAnimations", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AnimationsChangedEventArgs.Animations", + "kind": "property", + "name": "Animations", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Animesh.AnimationTrack", + "namespace": "LibreMetaverse.Animesh", + "name": "AnimationTrack", + "signature": "LibreMetaverse.Animesh.AnimationTrack", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.Advance(System.Single)", + "kind": "method", + "name": "Advance", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dt", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.EvaluatePose(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose})", + "kind": "method", + "name": "EvaluatePose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pose", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Animesh.JointPose\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.AnimationID", + "kind": "property", + "name": "AnimationID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.CurrentTime", + "kind": "property", + "name": "CurrentTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.Data", + "kind": "property", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.BinBVHAnimationReader", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "internal", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "internal", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.EaseWeight", + "kind": "property", + "name": "EaseWeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.IsFinished", + "kind": "property", + "name": "IsFinished", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Animesh.AnimeshManager", + "namespace": "LibreMetaverse.Animesh", + "name": "AnimeshManager", + "signature": "LibreMetaverse.Animesh.AnimeshManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Animesh.AnimeshManager.GetPlayer(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetPlayer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Animesh.AnimeshPlayer", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Animesh.AnimeshManager.RemovePlayer(LibreMetaverse.UUID)", + "kind": "method", + "name": "RemovePlayer", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Animesh.AnimeshManager.Update(System.Single)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dt", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimeshManager.AllPlayers", + "kind": "property", + "name": "AllPlayers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Animesh.AnimeshPlayer\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Animesh.AnimeshPlayer", + "namespace": "LibreMetaverse.Animesh", + "name": "AnimeshPlayer", + "signature": "LibreMetaverse.Animesh.AnimeshPlayer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Animesh.AnimeshPlayer.EvaluatePose", + "kind": "method", + "name": "EvaluatePose", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Animesh.JointPose\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Animesh.AnimeshPlayer.Update(System.Single)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dt", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimeshPlayer.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Animesh.AnimeshPlayer.TrackCount", + "kind": "property", + "name": "TrackCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Animesh.JointPose", + "namespace": "LibreMetaverse.Animesh", + "name": "JointPose", + "signature": "LibreMetaverse.Animesh.JointPose", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Animesh.JointPose.EaseWeight", + "kind": "field", + "name": "EaseWeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animesh.JointPose.HasPosition", + "kind": "field", + "name": "HasPosition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animesh.JointPose.HasRotation", + "kind": "field", + "name": "HasRotation", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animesh.JointPose.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animesh.JointPose.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Animesh.JointPose.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AnimeshSkinning", + "namespace": "LibreMetaverse", + "name": "AnimeshSkinning", + "signature": "LibreMetaverse.AnimeshSkinning", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AnimeshSkinning.ComputeSkinningMatrices(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose},LibreMetaverse.Rendering.LindenSkeleton,LibreMetaverse.Rendering.MeshSkinData)", + "kind": "method", + "name": "ComputeSkinningMatrices", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pose", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Animesh.JointPose\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "skeleton", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "skinData", + "type": "LibreMetaverse.Rendering.MeshSkinData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AnimeshSkinning.DeformVertices(LibreMetaverse.Rendering.Face,LibreMetaverse.Matrix4[],LibreMetaverse.Matrix4,System.Span{LibreMetaverse.Vector3},System.Span{LibreMetaverse.Vector3})", + "kind": "method", + "name": "DeformVertices", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "face", + "type": "LibreMetaverse.Rendering.Face", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "skinningMatrices", + "type": "LibreMetaverse.Matrix4[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "bindShapeMatrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "outPositions", + "type": "System.Span\u003CLibreMetaverse.Vector3\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "outNormals", + "type": "System.Span\u003CLibreMetaverse.Vector3\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Span\u003CLibreMetaverse.Vector3\u003E" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy", + "namespace": "LibreMetaverse.Appearance", + "name": "CompositeCurrentOutfitPolicy", + "signature": "LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Appearance.ICurrentOutfitPolicy" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.#ctor", + "kind": "constructor", + "name": "CompositeCurrentOutfitPolicy", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.AddPolicy(LibreMetaverse.Appearance.ICurrentOutfitPolicy)", + "kind": "method", + "name": "AddPolicy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "policyToAdd", + "type": "LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.CanAttach(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "CanAttach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.CanDetach(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "CanDetach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.RemovePolicy(LibreMetaverse.Appearance.ICurrentOutfitPolicy)", + "kind": "method", + "name": "RemovePolicy", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "policyToRemove", + "type": "LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportItemChangeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "addedItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "removedItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.\u003CReportItemChangeAsync\u003Ed__7" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.CurrentOutfitFolder", + "namespace": "LibreMetaverse.Appearance", + "name": "CurrentOutfitFolder", + "signature": "LibreMetaverse.Appearance.CurrentOutfitFolder", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "CurrentOutfitFolder", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddPolicy(LibreMetaverse.Appearance.ICurrentOutfitPolicy)", + "kind": "method", + "name": "AddPolicy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "policyToAdd", + "type": "LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(LibreMetaverse.InventoryItem,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "AddToOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CAddToOutfitAsync\u003Ed__42" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "AddToOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requestedItemsToAdd", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CAddToOutfitAsync\u003Ed__43" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AttachAsync(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "AttachAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "point", + "type": "LibreMetaverse.AttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CAttachAsync\u003Ed__38" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanAttachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "kind": "method", + "name": "CanAttachItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CCanAttachItemAsync\u003Ed__36" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanDetachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "kind": "method", + "name": "CanDetachItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CCanDetachItemAsync\u003Ed__37" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.DetachAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "kind": "method", + "name": "DetachAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CDetachAsync\u003Ed__39" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.FetchParentAsync(LibreMetaverse.InventoryBase,System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchParentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CFetchParentAsync\u003Ed__49" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetAttachmentItemID(LibreMetaverse.Primitive)", + "kind": "method", + "name": "GetAttachmentItemID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetCurrentOutfitLinksAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCurrentOutfitLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CGetCurrentOutfitLinksAsync\u003Ed__29" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetWornAtAsync(LibreMetaverse.WearableType,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetWornAtAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.WearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CGetWornAtAsync\u003Ed__40" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.IsObjectDescendentOfAsync(LibreMetaverse.InventoryBase,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "IsObjectDescendentOfAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CIsObjectDescendentOfAsync\u003Ed__50" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveFromOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CRemoveFromOutfitAsync\u003Ed__46" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveFromOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requestedItemsToRemove", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CRemoveFromOutfitAsync\u003Ed__45" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemovePolicy(LibreMetaverse.Appearance.ICurrentOutfitPolicy)", + "kind": "method", + "name": "RemovePolicy", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "policyToRemove", + "type": "LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.ReplaceOutfitAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReplaceOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "newOutfitFolderId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.CurrentOutfitFolder.\u003CReplaceOutfitAsync\u003Ed__41" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.ResolveInventoryLink(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "ResolveInventoryLink", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryItem", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemLink", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.CurrentOutfitFolder.COF", + "kind": "property", + "name": "COF", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.CurrentOutfitFolder.MaxClothingLayers", + "kind": "property", + "name": "MaxClothingLayers", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "namespace": "LibreMetaverse.Appearance", + "name": "ICurrentOutfitPolicy", + "signature": "LibreMetaverse.Appearance.ICurrentOutfitPolicy", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.CanAttach(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "CanAttach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.CanDetach(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "CanDetach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportItemChangeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "addedItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "removedItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.InitialOutfit", + "namespace": "LibreMetaverse.Appearance", + "name": "InitialOutfit", + "signature": "LibreMetaverse.Appearance.InitialOutfit", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.#ctor(LibreMetaverse.GridClient,LibreMetaverse.Appearance.CurrentOutfitFolder)", + "kind": "constructor", + "name": "InitialOutfit", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cof", + "type": "LibreMetaverse.Appearance.CurrentOutfitFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CheckSystemFoldersAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "CheckSystemFoldersAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.InitialOutfit.\u003CCheckSystemFoldersAsync\u003Ed__9" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CopyFolderAsync(LibreMetaverse.InventoryFolder,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "kind": "method", + "name": "CopyFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.InventoryFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destination", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Appearance.InitialOutfit.\u003CCopyFolderAsync\u003Ed__10" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CreateFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType,System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parent", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.FolderType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.FindNodeByName(LibreMetaverse.InventoryNode,System.String)", + "kind": "method", + "name": "FindNodeByName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "root", + "type": "LibreMetaverse.InventoryNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.SetInitialOutfitAsync(System.String,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "kind": "method", + "name": "SetInitialOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "outfit", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "namespace": "LibreMetaverse.Appearance", + "name": "InitialOutfitPhase", + "signature": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase.Applying", + "kind": "enum_value", + "name": "Applying", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase.Complete", + "kind": "enum_value", + "name": "Complete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase.Copying", + "kind": "enum_value", + "name": "Copying", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase.Counting", + "kind": "enum_value", + "name": "Counting", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress", + "namespace": "LibreMetaverse.Appearance", + "name": "InitialOutfitProgress", + "signature": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.#ctor", + "kind": "constructor", + "name": "InitialOutfitProgress", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.CurrentItemName", + "kind": "property", + "name": "CurrentItemName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.ItemsCopied", + "kind": "property", + "name": "ItemsCopied", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.Phase", + "kind": "property", + "name": "Phase", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.TotalItems", + "kind": "property", + "name": "TotalItems", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Appearance.InitialOutfitHandler", + "namespace": "LibreMetaverse.Appearance", + "name": "InitialOutfitHandler", + "signature": "LibreMetaverse.Appearance.InitialOutfitHandler", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfitHandler.#ctor(LibreMetaverse.GridClient,LibreMetaverse.Appearance.CurrentOutfitFolder,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "kind": "constructor", + "name": "InitialOutfitHandler", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cof", + "type": "LibreMetaverse.Appearance.CurrentOutfitFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Appearance.InitialOutfitHandler.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceFlags", + "namespace": "LibreMetaverse", + "name": "AppearanceFlags", + "signature": "LibreMetaverse.AppearanceFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AppearanceFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AppearanceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AppearanceFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceManager", + "namespace": "LibreMetaverse", + "name": "AppearanceManager", + "signature": "LibreMetaverse.AppearanceManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.AppearanceManager.AgentWearablesReply", + "kind": "event", + "name": "AgentWearablesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AgentWearablesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AppearanceManager.AppearanceSet", + "kind": "event", + "name": "AppearanceSet", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AppearanceSetEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AppearanceManager.CachedBakesReply", + "kind": "event", + "name": "CachedBakesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AgentCachedBakesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AppearanceManager.RebakeAvatarRequested", + "kind": "event", + "name": "RebakeAvatarRequested", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RebakeAvatarTexturesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.ATTACHMENT_ADD", + "kind": "field", + "name": "ATTACHMENT_ADD", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.BAKED_TEXTURE_COUNT", + "kind": "constant", + "name": "BAKED_TEXTURE_COUNT", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "11" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.BAKED_TEXTURE_HASH", + "kind": "field", + "name": "BAKED_TEXTURE_HASH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.BakeIndexToTextureIndex", + "kind": "field", + "name": "BakeIndexToTextureIndex", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.DEFAULT_AVATAR_TEXTURE", + "kind": "field", + "name": "DEFAULT_AVATAR_TEXTURE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_AUX1", + "kind": "field", + "name": "IMG_USE_BAKED_AUX1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_AUX2", + "kind": "field", + "name": "IMG_USE_BAKED_AUX2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_AUX3", + "kind": "field", + "name": "IMG_USE_BAKED_AUX3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_EYES", + "kind": "field", + "name": "IMG_USE_BAKED_EYES", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_HAIR", + "kind": "field", + "name": "IMG_USE_BAKED_HAIR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_HEAD", + "kind": "field", + "name": "IMG_USE_BAKED_HEAD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_INDICES", + "kind": "field", + "name": "IMG_USE_BAKED_INDICES", + "static": true, + "visibility": "public", + "type": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.AvatarTextureIndex\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_LEFTARM", + "kind": "field", + "name": "IMG_USE_BAKED_LEFTARM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_LEFTLEG", + "kind": "field", + "name": "IMG_USE_BAKED_LEFTLEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_LOWER", + "kind": "field", + "name": "IMG_USE_BAKED_LOWER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_SKIRT", + "kind": "field", + "name": "IMG_USE_BAKED_SKIRT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_UPPER", + "kind": "field", + "name": "IMG_USE_BAKED_UPPER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.MyTextures", + "kind": "field", + "name": "MyTextures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntry", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.MyVisualParameters", + "kind": "field", + "name": "MyVisualParameters", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLES_PER_LAYER", + "kind": "constant", + "name": "WEARABLES_PER_LAYER", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "9" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLE_BAKE_MAP", + "kind": "field", + "name": "WEARABLE_BAKE_MAP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType[][]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLE_COUNT", + "kind": "constant", + "name": "WEARABLE_COUNT", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "16" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLE_COUNT_MAX", + "kind": "constant", + "name": "WEARABLE_COUNT_MAX", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "60" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AppearanceManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.AddAttachments(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Boolean)", + "kind": "method", + "name": "AddAttachments", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "attachments", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "removeExistingFirst", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(LibreMetaverse.InventoryItem,System.Boolean)", + "kind": "method", + "name": "AddToOutfit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableItem", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "kind": "method", + "name": "AddToOutfit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.ApplyArchetype(LibreMetaverse.GenepoolArchetype)", + "kind": "method", + "name": "ApplyArchetype", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "archetype", + "type": "LibreMetaverse.GenepoolArchetype", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean)", + "kind": "method", + "name": "Attach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachPoint", + "type": "LibreMetaverse.AttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.Permissions,System.UInt32,LibreMetaverse.AttachmentPoint,System.Boolean)", + "kind": "method", + "name": "Attach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "perms", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemFlags", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachPoint", + "type": "LibreMetaverse.AttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replace", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.BakeTypeToAgentTextureIndex(LibreMetaverse.BakeType)", + "kind": "method", + "name": "BakeTypeToAgentTextureIndex", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "LibreMetaverse.BakeType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.BakeTypeToTextures(LibreMetaverse.BakeType)", + "kind": "method", + "name": "BakeTypeToTextures", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.AvatarTextureIndex\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bakeType", + "type": "LibreMetaverse.BakeType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.BlendToArchetype(LibreMetaverse.GenepoolArchetype,System.Single)", + "kind": "method", + "name": "BlendToArchetype", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "archetype", + "type": "LibreMetaverse.GenepoolArchetype", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.DecodeWearableParams(LibreMetaverse.AppearanceManager.WearableData,LibreMetaverse.AppearanceManager.TextureData[]@)", + "kind": "method", + "name": "DecodeWearableParams", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearable", + "type": "LibreMetaverse.AppearanceManager.WearableData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "textures", + "type": "LibreMetaverse.AppearanceManager.TextureData[]\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.Detach(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "Detach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.Detach(LibreMetaverse.UUID)", + "kind": "method", + "name": "Detach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachments", + "kind": "method", + "name": "GetAttachments", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByAttachmentPointAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetAttachmentsByAttachmentPointAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.MultiValueDictionary\u003CLibreMetaverse.AttachmentPoint, LibreMetaverse.InventoryItem\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CGetAttachmentsByAttachmentPointAsync\u003Ed__131" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByInventoryItem", + "kind": "method", + "name": "GetAttachmentsByInventoryItem", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.InventoryItem, LibreMetaverse.AttachmentPoint\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByItemId", + "kind": "method", + "name": "GetAttachmentsByItemId", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.AttachmentPoint\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetColorFromParams(System.Collections.Generic.List{LibreMetaverse.AppearanceManager.ColorParamInfo})", + "kind": "method", + "name": "GetColorFromParams", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "param", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.AppearanceManager.ColorParamInfo\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentOutfitFolderAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCurrentOutfitFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryFolder\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CGetCurrentOutfitFolderAsync\u003Ed__142" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentParamValues", + "kind": "method", + "name": "GetCurrentParamValues", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetFolderWearablesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryWearable\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "Wearables" + }, + { + "type": "System.String", + "value": "Attachments" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CGetFolderWearablesAsync\u003Ed__148" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetWearableAssets(LibreMetaverse.WearableType)", + "kind": "method", + "name": "GetWearableAssets", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.WearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetWearables", + "kind": "method", + "name": "GetWearables", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.AppearanceManager.WearableData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.GetWearablesByType", + "kind": "method", + "name": "GetWearablesByType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CLibreMetaverse.WearableType, LibreMetaverse.AppearanceManager.WearableData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.IsItemWorn(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "IsItemWorn", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.IsItemWorn(LibreMetaverse.UUID)", + "kind": "method", + "name": "IsItemWorn", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.MakeAppearancePacket", + "kind": "method", + "name": "MakeAppearancePacket", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentSetAppearancePacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.MorphLayerForBakeType(LibreMetaverse.BakeType)", + "kind": "method", + "name": "MorphLayerForBakeType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bakeType", + "type": "LibreMetaverse.BakeType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.RandomizeAppearance(System.Random)", + "kind": "method", + "name": "RandomizeAppearance", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "rng", + "type": "System.Random", + "passing": "value", + "optional": true, + "default": { + "type": "System.Random" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.RemoveFromOutfit(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "RemoveFromOutfit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableItem", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.RemoveFromOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "kind": "method", + "name": "RemoveFromOutfit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "kind": "method", + "name": "ReplaceOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "kind": "method", + "name": "ReplaceOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "safe", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CReplaceOutfitAsync\u003Ed__115" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.RequestAgentWornAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAgentWornAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CRequestAgentWornAsync\u003Ed__107" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.RequestCachedBakes", + "kind": "method", + "name": "RequestCachedBakes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.RequestSetAppearance(System.Boolean)", + "kind": "method", + "name": "RequestSetAppearance", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "forceRebake", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.SendOutfitToCurrentSimulatorAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "SendOutfitToCurrentSimulatorAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CSendOutfitToCurrentSimulatorAsync\u003Ed__144" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.ServerBakingRegion", + "kind": "method", + "name": "ServerBakingRegion", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.UpdateLastReceivedCOFVersion(System.Int32)", + "kind": "method", + "name": "UpdateLastReceivedCOFVersion", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cofVersion", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.WearOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryBase},System.Boolean)", + "kind": "method", + "name": "WearOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearables", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "replaceItems", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AppearanceManager.\u003CWearOutfitAsync\u003Ed__120" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.WearableTypeToAssetType(LibreMetaverse.WearableType)", + "kind": "method", + "name": "WearableTypeToAssetType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.WearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.isItemAttached(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "isItemAttached", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.isItemAttached(LibreMetaverse.UUID)", + "kind": "method", + "name": "isItemAttached", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AppearanceManager.LastUpdateReceivedCOFVersion", + "kind": "property", + "name": "LastUpdateReceivedCOFVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AppearanceManager.ManagerBusy", + "kind": "property", + "name": "ManagerBusy", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AppearanceManager.TextureProvider", + "kind": "property", + "name": "TextureProvider", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.IBakingTextureProvider", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceManager.ColorParamInfo", + "namespace": "LibreMetaverse", + "name": "ColorParamInfo", + "signature": "LibreMetaverse.AppearanceManager.ColorParamInfo", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AppearanceManager.ColorParamInfo.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.ColorParamInfo.VisualColorParam", + "kind": "field", + "name": "VisualColorParam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.VisualColorParam", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.ColorParamInfo.VisualParam", + "kind": "field", + "name": "VisualParam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.VisualParam", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.ColorParamInfo.WearableType", + "kind": "field", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceManager.TextureData", + "namespace": "LibreMetaverse", + "name": "TextureData", + "signature": "LibreMetaverse.AppearanceManager.TextureData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.AlphaMasks", + "kind": "field", + "name": "AlphaMasks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.VisualAlphaParam, System.Single\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.Color", + "kind": "field", + "name": "Color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.Texture", + "kind": "field", + "name": "Texture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.AssetTexture", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.TextureID", + "kind": "field", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.TextureIndex", + "kind": "field", + "name": "TextureIndex", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.TextureData.#ctor", + "kind": "constructor", + "name": "TextureData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.TextureData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceManager.WearableData", + "namespace": "LibreMetaverse", + "name": "WearableData", + "signature": "LibreMetaverse.AppearanceManager.WearableData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WearableData.Asset", + "kind": "field", + "name": "Asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.AssetWearable", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WearableData.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WearableData.AssetType", + "kind": "field", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WearableData.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AppearanceManager.WearableData.WearableType", + "kind": "field", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.WearableData.#ctor", + "kind": "constructor", + "name": "WearableData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AppearanceManager.WearableData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceManagerException", + "namespace": "LibreMetaverse", + "name": "AppearanceManagerException", + "signature": "LibreMetaverse.AppearanceManagerException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AppearanceManagerException.#ctor(System.String)", + "kind": "constructor", + "name": "AppearanceManagerException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AppearanceSetEventArgs", + "namespace": "LibreMetaverse", + "name": "AppearanceSetEventArgs", + "signature": "LibreMetaverse.AppearanceSetEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AppearanceSetEventArgs.#ctor(System.Boolean)", + "kind": "constructor", + "name": "AppearanceSetEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AppearanceSetEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ArchetypeParam", + "namespace": "LibreMetaverse", + "name": "ArchetypeParam", + "signature": "LibreMetaverse.ArchetypeParam", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.ArchetypeParam.Id", + "kind": "property", + "name": "Id", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ArchetypeParam.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ArchetypeParam.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetCache", + "namespace": "LibreMetaverse", + "name": "AssetCache", + "signature": "LibreMetaverse.AssetCache", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AssetCache.ComputeAssetCacheFilename", + "kind": "field", + "name": "ComputeAssetCacheFilename", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AssetCache", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.AssetFileName(LibreMetaverse.UUID)", + "kind": "method", + "name": "AssetFileName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.BeginPrune", + "kind": "method", + "name": "BeginPrune", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.GetCachedAssetBytes(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetCachedAssetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.GetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCachedAssetBytesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Byte[]\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetCache.\u003CGetCachedAssetBytesAsync\u003Ed__24" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.GetCachedImage(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetCachedImage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImageDownload", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "imageID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.HasAsset(LibreMetaverse.UUID)", + "kind": "method", + "name": "HasAsset", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.PruneAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "PruneAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetCache.\u003CPruneAsync\u003Ed__36" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCache(LibreMetaverse.UUID,System.Byte[])", + "kind": "method", + "name": "SaveAssetToCache", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCacheAsync(LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken)", + "kind": "method", + "name": "SaveAssetToCacheAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetCache.\u003CSaveAssetToCacheAsync\u003Ed__31" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytes(LibreMetaverse.UUID,System.Byte[]@)", + "kind": "method", + "name": "TryGetCachedAssetBytes", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.Byte[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetCachedAssetBytesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "Data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetCache.\u003CTryGetCachedAssetBytesAsync\u003Ed__26" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AssetCache.AutoPruneEnabled", + "kind": "property", + "name": "AutoPruneEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AssetCache.AutoPruneInterval", + "kind": "property", + "name": "AutoPruneInterval", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate", + "namespace": "LibreMetaverse", + "name": "ComputeAssetCacheFilenameDelegate", + "signature": "LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.Invoke(System.String,LibreMetaverse.UUID)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cacheDir", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ComputeAssetCacheFilenameDelegate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.BeginInvoke(System.String,LibreMetaverse.UUID,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cacheDir", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.Invoke(System.String,LibreMetaverse.UUID)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cacheDir", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetCacheSettings", + "namespace": "LibreMetaverse", + "name": "AssetCacheSettings", + "signature": "LibreMetaverse.AssetCacheSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AssetCacheSettings.Dir", + "kind": "field", + "name": "Dir", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetCacheSettings.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetCacheSettings.MaxSize", + "kind": "field", + "name": "MaxSize", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetCacheSettings.#ctor", + "kind": "constructor", + "name": "AssetCacheSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetDownload", + "namespace": "LibreMetaverse", + "name": "AssetDownload", + "signature": "LibreMetaverse.AssetDownload", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Transfer", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AssetDownload.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.Channel", + "kind": "field", + "name": "Channel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ChannelType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.Simulator", + "kind": "field", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.Source", + "kind": "field", + "name": "Source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.Target", + "kind": "field", + "name": "Target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TargetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.nextPacket", + "kind": "field", + "name": "nextPacket", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetDownload.outOfOrderPackets", + "kind": "field", + "name": "outOfOrderPackets", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, System.Byte[]\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetDownload.#ctor", + "kind": "constructor", + "name": "AssetDownload", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetManager", + "namespace": "LibreMetaverse", + "name": "AssetManager", + "signature": "LibreMetaverse.AssetManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.AssetManager.AssetUploaded", + "kind": "event", + "name": "AssetUploaded", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AssetUploadEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AssetManager.ImageReceiveProgress", + "kind": "event", + "name": "ImageReceiveProgress", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ImageReceiveProgressEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AssetManager.InitiateDownload", + "kind": "event", + "name": "InitiateDownload", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.InitiateDownloadEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AssetManager.UploadProgress", + "kind": "event", + "name": "UploadProgress", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AssetUploadEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AssetManager.XferReceived", + "kind": "event", + "name": "XferReceived", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.XferReceivedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetManager.Cache", + "kind": "field", + "name": "Cache", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetCache", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AssetManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.AssetTypeToString(LibreMetaverse.AssetType)", + "kind": "method", + "name": "AssetTypeToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.CreateAssetWrapper(LibreMetaverse.AssetType)", + "kind": "method", + "name": "CreateAssetWrapper", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Asset", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.GetTextureUploadCost(System.Int32)", + "kind": "method", + "name": "GetTextureUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "widthPixels", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priority", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sourceType", + "type": "LibreMetaverse.SourceType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priority", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priority", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sourceType", + "type": "LibreMetaverse.SourceType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestAssetXfer(System.String,System.Boolean,System.Boolean,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean)", + "kind": "method", + "name": "RequestAssetXfer", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "deleteOnCompletion", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "useBigPackets", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "vFileID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "vFileType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fromCache", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestEstateAsset(LibreMetaverse.AssetDownload,LibreMetaverse.EstateAssetType)", + "kind": "method", + "name": "RequestEstateAsset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "transfer", + "type": "LibreMetaverse.AssetDownload", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eat", + "type": "LibreMetaverse.EstateAssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestImageAsync(LibreMetaverse.UUID,LibreMetaverse.ImageType,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestImageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imageType", + "type": "LibreMetaverse.ImageType", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.ImageType", + "value": "Normal" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestImageCancel(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestImageCancel", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestInventoryAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priority", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transferID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestInventoryAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priority", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transferID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestMeshAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestMeshAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetMesh\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "meshID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetManager.\u003CRequestMeshAsync\u003Ed__63" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestServerBakedImageAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestServerBakedImageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bakeName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetManager.\u003CRequestServerBakedImageAsync\u003Ed__67" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestUpload(LibreMetaverse.UUID@,LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestUpload", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "storeLocal", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestUploadAsync(LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestUploadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "storeLocal", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetManager.\u003CRequestUploadAsync\u003Ed__59" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestUploadBakedTextureAsync(System.Byte[],System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestUploadBakedTextureAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetManager.\u003CRequestUploadBakedTextureAsync\u003Ed__62" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AssetManager.RequestUploadLargeTextureAsync(System.Byte[],System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestUploadLargeTextureAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "widthPixels", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AssetManager.\u003CRequestUploadLargeTextureAsync\u003Ed__61" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AssetManager.HttpDownloadManager", + "kind": "property", + "name": "HttpDownloadManager", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Http.DownloadManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetUpload", + "namespace": "LibreMetaverse", + "name": "AssetUpload", + "signature": "LibreMetaverse.AssetUpload", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Transfer", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AssetUpload.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetUpload.PacketNum", + "kind": "field", + "name": "PacketNum", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetUpload.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AssetUpload.XferID", + "kind": "field", + "name": "XferID", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AssetUpload.#ctor", + "kind": "constructor", + "name": "AssetUpload", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AssetUploadEventArgs", + "namespace": "LibreMetaverse", + "name": "AssetUploadEventArgs", + "signature": "LibreMetaverse.AssetUploadEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AssetUploadEventArgs.#ctor(LibreMetaverse.AssetUpload)", + "kind": "constructor", + "name": "AssetUploadEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upload", + "type": "LibreMetaverse.AssetUpload", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AssetUploadEventArgs.Upload", + "kind": "property", + "name": "Upload", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetUpload", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.ArchiveConstants", + "namespace": "LibreMetaverse.Assets", + "name": "ArchiveConstants", + "signature": "LibreMetaverse.Assets.ArchiveConstants", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSETS_PATH", + "kind": "constant", + "name": "ASSETS_PATH", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "assets/" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSET_EXTENSION_SEPARATOR", + "kind": "constant", + "name": "ASSET_EXTENSION_SEPARATOR", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "_" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSET_TYPE_TO_EXTENSION", + "kind": "field", + "name": "ASSET_TYPE_TO_EXTENSION", + "static": true, + "visibility": "public", + "type": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.AssetType, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.CONTROL_FILE_PATH", + "kind": "constant", + "name": "CONTROL_FILE_PATH", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "archive.xml" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.EXTENSION_TO_ASSET_TYPE", + "kind": "field", + "name": "EXTENSION_TO_ASSET_TYPE", + "static": true, + "visibility": "public", + "type": "System.Collections.Frozen.FrozenDictionary\u003CSystem.String, LibreMetaverse.AssetType\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.LANDDATA_PATH", + "kind": "constant", + "name": "LANDDATA_PATH", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "landdata/" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.OBJECTS_PATH", + "kind": "constant", + "name": "OBJECTS_PATH", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "objects/" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.SETTINGS_PATH", + "kind": "constant", + "name": "SETTINGS_PATH", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "settings/" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.TERRAINS_PATH", + "kind": "constant", + "name": "TERRAINS_PATH", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "terrains/" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.ArchiveConstants.#ctor", + "kind": "constructor", + "name": "ArchiveConstants", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Asset", + "namespace": "LibreMetaverse.Assets", + "name": "Asset", + "signature": "LibreMetaverse.Assets.Asset", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Asset.AssetData", + "kind": "field", + "name": "AssetData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Asset.Temporary", + "kind": "field", + "name": "Temporary", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Asset.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Asset.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Asset.AssetID", + "kind": "property", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "internal", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "internal", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Asset.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetAnimation", + "namespace": "LibreMetaverse.Assets", + "name": "AssetAnimation", + "signature": "LibreMetaverse.Assets.AssetAnimation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.AssetAnimation.#ctor", + "kind": "constructor", + "name": "AssetAnimation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetAnimation.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetAnimation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetAnimation.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetAnimation.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetAnimation.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetBodypart", + "namespace": "LibreMetaverse.Assets", + "name": "AssetBodypart", + "signature": "LibreMetaverse.Assets.AssetBodypart", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.AssetWearable", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.AssetBodypart.#ctor", + "kind": "constructor", + "name": "AssetBodypart", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetBodypart.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetBodypart", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetBodypart.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetCallingCard", + "namespace": "LibreMetaverse.Assets", + "name": "AssetCallingCard", + "signature": "LibreMetaverse.Assets.AssetCallingCard", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetCallingCard.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.#ctor", + "kind": "constructor", + "name": "AssetCallingCard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "AssetCallingCard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetCallingCard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetCallingCard.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetClothing", + "namespace": "LibreMetaverse.Assets", + "name": "AssetClothing", + "signature": "LibreMetaverse.Assets.AssetClothing", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.AssetWearable", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.AssetClothing.#ctor", + "kind": "constructor", + "name": "AssetClothing", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetClothing.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetClothing", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetClothing.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetGesture", + "namespace": "LibreMetaverse.Assets", + "name": "AssetGesture", + "signature": "LibreMetaverse.Assets.AssetGesture", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetGesture.ReplaceWith", + "kind": "field", + "name": "ReplaceWith", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetGesture.Sequence", + "kind": "field", + "name": "Sequence", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.GestureStep\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetGesture.Trigger", + "kind": "field", + "name": "Trigger", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetGesture.TriggerKey", + "kind": "field", + "name": "TriggerKey", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetGesture.TriggerKeyMask", + "kind": "field", + "name": "TriggerKeyMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetGesture.#ctor", + "kind": "constructor", + "name": "AssetGesture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetGesture.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetGesture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetGesture.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetGesture.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetGesture.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetLandmark", + "namespace": "LibreMetaverse.Assets", + "name": "AssetLandmark", + "signature": "LibreMetaverse.Assets.AssetLandmark", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetLandmark.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetLandmark.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetLandmark.#ctor", + "kind": "constructor", + "name": "AssetLandmark", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetLandmark.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetLandmark", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetLandmark.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetLandmark.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetLandmark.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetMaterial", + "namespace": "LibreMetaverse.Assets", + "name": "AssetMaterial", + "signature": "LibreMetaverse.Assets.AssetMaterial", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.Default", + "kind": "field", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.AssetMaterial", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.GLTF_OVERRIDE_NULL_UUID", + "kind": "field", + "name": "GLTF_OVERRIDE_NULL_UUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_BASE_COLOR", + "kind": "constant", + "name": "TEXTURE_BASE_COLOR", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "0" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_COUNT", + "kind": "constant", + "name": "TEXTURE_COUNT", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "4" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_EMISSIVE", + "kind": "constant", + "name": "TEXTURE_EMISSIVE", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "3" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_METALLIC_ROUGHNESS", + "kind": "constant", + "name": "TEXTURE_METALLIC_ROUGHNESS", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "2" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_NORMAL", + "kind": "constant", + "name": "TEXTURE_NORMAL", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "1" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.#ctor", + "kind": "constructor", + "name": "AssetMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.ApplyOverride(LibreMetaverse.Assets.AssetMaterial)", + "kind": "method", + "name": "ApplyOverride", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "overrideMat", + "type": "LibreMetaverse.Assets.AssetMaterial", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.FromOverrideOsd(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOverrideOsd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.AssetMaterial", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaCutoff(System.Single,System.Boolean)", + "kind": "method", + "name": "SetAlphaCutoff", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cutoff", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaMode(LibreMetaverse.Assets.GltfAlphaMode,System.Boolean)", + "kind": "method", + "name": "SetAlphaMode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mode", + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetBaseColorFactor(LibreMetaverse.Color4,System.Boolean)", + "kind": "method", + "name": "SetBaseColorFactor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "color", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetBaseMaterial", + "kind": "method", + "name": "SetBaseMaterial", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetDoubleSided(System.Boolean,System.Boolean)", + "kind": "method", + "name": "SetDoubleSided", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "doubleSided", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetEmissiveFactor(LibreMetaverse.Vector3,System.Boolean)", + "kind": "method", + "name": "SetEmissiveFactor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "color", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetMetallicFactor(System.Single,System.Boolean)", + "kind": "method", + "name": "SetMetallicFactor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "metallic", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetRoughnessFactor(System.Single,System.Boolean)", + "kind": "method", + "name": "SetRoughnessFactor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "roughness", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureId(System.Int32,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "SetTextureId", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "slot", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forOverride", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureOffset(System.Int32,LibreMetaverse.Vector2)", + "kind": "method", + "name": "SetTextureOffset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "slot", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offset", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureRotation(System.Int32,System.Single)", + "kind": "method", + "name": "SetTextureRotation", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "slot", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureScale(System.Int32,LibreMetaverse.Vector2)", + "kind": "method", + "name": "SetTextureScale", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "slot", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scale", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.ToJson", + "kind": "method", + "name": "ToJson", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMaterial.ToOverrideOsd", + "kind": "method", + "name": "ToOverrideOsd", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.AlphaCutoff", + "kind": "property", + "name": "AlphaCutoff", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.AlphaMode", + "kind": "property", + "name": "AlphaMode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.BaseColorFactor", + "kind": "property", + "name": "BaseColorFactor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.DoubleSided", + "kind": "property", + "name": "DoubleSided", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.EmissiveFactor", + "kind": "property", + "name": "EmissiveFactor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.MetallicFactor", + "kind": "property", + "name": "MetallicFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.OverrideAlphaMode", + "kind": "property", + "name": "OverrideAlphaMode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.OverrideDoubleSided", + "kind": "property", + "name": "OverrideDoubleSided", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.RoughnessFactor", + "kind": "property", + "name": "RoughnessFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.TextureIds", + "kind": "property", + "name": "TextureIds", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMaterial.TextureTransforms", + "kind": "property", + "name": "TextureTransforms", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfTextureTransform[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetMesh", + "namespace": "LibreMetaverse.Assets", + "name": "AssetMesh", + "signature": "LibreMetaverse.Assets.AssetMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetMesh.MeshData", + "kind": "field", + "name": "MeshData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMesh.#ctor", + "kind": "constructor", + "name": "AssetMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMesh.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMesh.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMesh.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMesh.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetMutable", + "namespace": "LibreMetaverse.Assets", + "name": "AssetMutable", + "signature": "LibreMetaverse.Assets.AssetMutable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetMutable.currentType", + "kind": "field", + "name": "currentType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMutable.#ctor(LibreMetaverse.AssetType)", + "kind": "constructor", + "name": "AssetMutable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMutable.#ctor(LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetMutable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMutable.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetMutable.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetMutable.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetNotecard", + "namespace": "LibreMetaverse.Assets", + "name": "AssetNotecard", + "signature": "LibreMetaverse.Assets.AssetNotecard", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetNotecard.BodyText", + "kind": "field", + "name": "BodyText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetNotecard.EmbeddedItems", + "kind": "field", + "name": "EmbeddedItems", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetNotecard.#ctor", + "kind": "constructor", + "name": "AssetNotecard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetNotecard.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetNotecard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetNotecard.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetNotecard.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetNotecard.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetPrim", + "namespace": "LibreMetaverse.Assets", + "name": "AssetPrim", + "signature": "LibreMetaverse.Assets.AssetPrim", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetPrim.Children", + "kind": "field", + "name": "Children", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.PrimObject\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetPrim.Parent", + "kind": "field", + "name": "Parent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor", + "kind": "constructor", + "name": "AssetPrim", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor(LibreMetaverse.Assets.PrimObject,System.Collections.Generic.List{LibreMetaverse.Assets.PrimObject})", + "kind": "constructor", + "name": "AssetPrim", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parent", + "type": "LibreMetaverse.Assets.PrimObject", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "children", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.PrimObject\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetPrim", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor(System.String)", + "kind": "constructor", + "name": "AssetPrim", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xmlData", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.DecodeXml(System.String)", + "kind": "method", + "name": "DecodeXml", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xmlData", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.EncodeXml", + "kind": "method", + "name": "EncodeXml", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetPrim.LoadPrim(System.Xml.XmlTextReader)", + "kind": "method", + "name": "LoadPrim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.Xml.XmlTextReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetPrim.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetScriptBinary", + "namespace": "LibreMetaverse.Assets", + "name": "AssetScriptBinary", + "signature": "LibreMetaverse.Assets.AssetScriptBinary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.#ctor", + "kind": "constructor", + "name": "AssetScriptBinary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetScriptBinary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetScriptBinary.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetScriptText", + "namespace": "LibreMetaverse.Assets", + "name": "AssetScriptText", + "signature": "LibreMetaverse.Assets.AssetScriptText", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetScriptText.Source", + "kind": "field", + "name": "Source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptText.#ctor", + "kind": "constructor", + "name": "AssetScriptText", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptText.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetScriptText", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptText.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetScriptText.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetScriptText.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetSettings", + "namespace": "LibreMetaverse.Assets", + "name": "AssetSettings", + "signature": "LibreMetaverse.Assets.AssetSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetSettings.Settings", + "kind": "field", + "name": "Settings", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSettings.#ctor", + "kind": "constructor", + "name": "AssetSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSettings.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSettings.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSettings.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetSettings.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetSound", + "namespace": "LibreMetaverse.Assets", + "name": "AssetSound", + "signature": "LibreMetaverse.Assets.AssetSound", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.AssetSound.#ctor", + "kind": "constructor", + "name": "AssetSound", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSound.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetSound", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSound.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSound.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetSound.PcmToOgg(System.Byte[],System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "PcmToOgg", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pcmData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bitsPerSample", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "16" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetSound.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetTexture", + "namespace": "LibreMetaverse.Assets", + "name": "AssetTexture", + "signature": "LibreMetaverse.Assets.AssetTexture", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetTexture.Components", + "kind": "field", + "name": "Components", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetTexture.Image", + "kind": "field", + "name": "Image", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetTexture.#ctor", + "kind": "constructor", + "name": "AssetTexture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetTexture.#ctor(LibreMetaverse.Imaging.ManagedImage)", + "kind": "constructor", + "name": "AssetTexture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "image", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetTexture.#ctor(LibreMetaverse.UUID,System.Byte[])", + "kind": "constructor", + "name": "AssetTexture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetTexture.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetTexture.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.AssetTexture.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetWearable", + "namespace": "LibreMetaverse.Assets", + "name": "AssetWearable", + "signature": "LibreMetaverse.Assets.AssetWearable", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Asset", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Creator", + "kind": "field", + "name": "Creator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.ForSale", + "kind": "field", + "name": "ForSale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Group", + "kind": "field", + "name": "Group", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.LastOwner", + "kind": "field", + "name": "LastOwner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Owner", + "kind": "field", + "name": "Owner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Params", + "kind": "field", + "name": "Params", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Permissions", + "kind": "field", + "name": "Permissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.Textures", + "kind": "field", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.AvatarTextureIndex, LibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.AssetWearable.WearableType", + "kind": "field", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetWearable.Decode", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetWearable.Encode", + "kind": "method", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.AssetsArchiver", + "namespace": "LibreMetaverse.Assets", + "name": "AssetsArchiver", + "signature": "LibreMetaverse.Assets.AssetsArchiver", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.AssetsArchiver.#ctor(System.Collections.Generic.IDictionary{LibreMetaverse.UUID,LibreMetaverse.Assets.Asset})", + "kind": "constructor", + "name": "AssetsArchiver", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assets", + "type": "System.Collections.Generic.IDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Assets.Asset\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.AssetsArchiver.Archive(LibreMetaverse.Assets.TarArchiveWriter)", + "kind": "method", + "name": "Archive", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "archive", + "type": "LibreMetaverse.Assets.TarArchiveWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStep", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStep", + "signature": "LibreMetaverse.Assets.GestureStep", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "P:LibreMetaverse.Assets.GestureStep.GestureStepType", + "kind": "property", + "name": "GestureStepType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStepAnimation", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStepAnimation", + "signature": "LibreMetaverse.Assets.GestureStepAnimation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.GestureStep", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepAnimation.AnimationStart", + "kind": "field", + "name": "AnimationStart", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepAnimation.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepAnimation.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepAnimation.#ctor", + "kind": "constructor", + "name": "GestureStepAnimation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepAnimation.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.GestureStepAnimation.GestureStepType", + "kind": "property", + "name": "GestureStepType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStepChat", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStepChat", + "signature": "LibreMetaverse.Assets.GestureStepChat", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.GestureStep", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepChat.Text", + "kind": "field", + "name": "Text", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepChat.#ctor", + "kind": "constructor", + "name": "GestureStepChat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepChat.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.GestureStepChat.GestureStepType", + "kind": "property", + "name": "GestureStepType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStepEOF", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStepEOF", + "signature": "LibreMetaverse.Assets.GestureStepEOF", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.GestureStep", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepEOF.#ctor", + "kind": "constructor", + "name": "GestureStepEOF", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepEOF.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.GestureStepEOF.GestureStepType", + "kind": "property", + "name": "GestureStepType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStepSound", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStepSound", + "signature": "LibreMetaverse.Assets.GestureStepSound", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.GestureStep", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepSound.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepSound.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepSound.#ctor", + "kind": "constructor", + "name": "GestureStepSound", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepSound.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.GestureStepSound.GestureStepType", + "kind": "property", + "name": "GestureStepType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStepType", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStepType", + "signature": "LibreMetaverse.Assets.GestureStepType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepType.Animation", + "kind": "enum_value", + "name": "Animation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GestureStepType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepType.Chat", + "kind": "enum_value", + "name": "Chat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GestureStepType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepType.EOF", + "kind": "enum_value", + "name": "EOF", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GestureStepType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepType.Sound", + "kind": "enum_value", + "name": "Sound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GestureStepType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepType.Wait", + "kind": "enum_value", + "name": "Wait", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GestureStepType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GestureStepWait", + "namespace": "LibreMetaverse.Assets", + "name": "GestureStepWait", + "signature": "LibreMetaverse.Assets.GestureStepWait", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.GestureStep", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepWait.WaitForAnimation", + "kind": "field", + "name": "WaitForAnimation", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepWait.WaitForTime", + "kind": "field", + "name": "WaitForTime", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GestureStepWait.WaitTime", + "kind": "field", + "name": "WaitTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepWait.#ctor", + "kind": "constructor", + "name": "GestureStepWait", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GestureStepWait.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.GestureStepWait.GestureStepType", + "kind": "property", + "name": "GestureStepType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GestureStepType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessor", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAccessor", + "signature": "LibreMetaverse.Assets.Gltf.GltfAccessor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfAccessor.#ctor", + "kind": "constructor", + "name": "GltfAccessor", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.BufferView", + "kind": "property", + "name": "BufferView", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ByteOffset", + "kind": "property", + "name": "ByteOffset", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ComponentByteSize", + "kind": "property", + "name": "ComponentByteSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ComponentCount", + "kind": "property", + "name": "ComponentCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ComponentType", + "kind": "property", + "name": "ComponentType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.DefaultStride", + "kind": "property", + "name": "DefaultStride", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Max", + "kind": "property", + "name": "Max", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Min", + "kind": "property", + "name": "Min", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Normalized", + "kind": "property", + "name": "Normalized", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessorType", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAccessorType", + "signature": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Mat2", + "kind": "enum_value", + "name": "Mat2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Mat3", + "kind": "enum_value", + "name": "Mat3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Mat4", + "kind": "enum_value", + "name": "Mat4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Scalar", + "kind": "enum_value", + "name": "Scalar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Vec2", + "kind": "enum_value", + "name": "Vec2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Vec3", + "kind": "enum_value", + "name": "Vec3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAccessorType.Vec4", + "kind": "enum_value", + "name": "Vec4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAccessorType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimation", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAnimation", + "signature": "LibreMetaverse.Assets.Gltf.GltfAnimation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfAnimation.#ctor", + "kind": "constructor", + "name": "GltfAnimation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimation.Channels", + "kind": "property", + "name": "Channels", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAnimationChannel\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimation.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimation.Samplers", + "kind": "property", + "name": "Samplers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAnimationSampler\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationChannel", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAnimationChannel", + "signature": "LibreMetaverse.Assets.Gltf.GltfAnimationChannel", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfAnimationChannel.#ctor", + "kind": "constructor", + "name": "GltfAnimationChannel", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationChannel.Sampler", + "kind": "property", + "name": "Sampler", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationChannel.Target", + "kind": "property", + "name": "Target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAnimationChannelTarget", + "signature": "LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget.#ctor", + "kind": "constructor", + "name": "GltfAnimationChannelTarget", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget.Node", + "kind": "property", + "name": "Node", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget.Path", + "kind": "property", + "name": "Path", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAnimationInterpolation", + "signature": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation.CubicSpline", + "kind": "enum_value", + "name": "CubicSpline", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation.Linear", + "kind": "enum_value", + "name": "Linear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation.Step", + "kind": "enum_value", + "name": "Step", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAnimationSampler", + "signature": "LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfAnimationSampler.#ctor", + "kind": "constructor", + "name": "GltfAnimationSampler", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationSampler.Input", + "kind": "property", + "name": "Input", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationSampler.Interpolation", + "kind": "property", + "name": "Interpolation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationSampler.Output", + "kind": "property", + "name": "Output", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfAnimationTargetPath", + "signature": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath.Rotation", + "kind": "enum_value", + "name": "Rotation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath.Scale", + "kind": "enum_value", + "name": "Scale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath.Translation", + "kind": "enum_value", + "name": "Translation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath.Weights", + "kind": "enum_value", + "name": "Weights", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfBuffer", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfBuffer", + "signature": "LibreMetaverse.Assets.Gltf.GltfBuffer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfBuffer.#ctor", + "kind": "constructor", + "name": "GltfBuffer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.ByteLength", + "kind": "property", + "name": "ByteLength", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.Data", + "kind": "property", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.Uri", + "kind": "property", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfBufferView", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfBufferView", + "signature": "LibreMetaverse.Assets.Gltf.GltfBufferView", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfBufferView.#ctor", + "kind": "constructor", + "name": "GltfBufferView", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.Buffer", + "kind": "property", + "name": "Buffer", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.ByteLength", + "kind": "property", + "name": "ByteLength", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.ByteOffset", + "kind": "property", + "name": "ByteOffset", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.ByteStride", + "kind": "property", + "name": "ByteStride", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.Target", + "kind": "property", + "name": "Target", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfComponentType", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfComponentType", + "signature": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfComponentType.Byte", + "kind": "enum_value", + "name": "Byte", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "value": "5120" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfComponentType.Float", + "kind": "enum_value", + "name": "Float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "value": "5126" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfComponentType.Short", + "kind": "enum_value", + "name": "Short", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "value": "5122" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfComponentType.UnsignedByte", + "kind": "enum_value", + "name": "UnsignedByte", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "value": "5121" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfComponentType.UnsignedInt", + "kind": "enum_value", + "name": "UnsignedInt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "value": "5125" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfComponentType.UnsignedShort", + "kind": "enum_value", + "name": "UnsignedShort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfComponentType", + "value": "5123" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfDocument", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfDocument", + "signature": "LibreMetaverse.Assets.Gltf.GltfDocument", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.#ctor", + "kind": "constructor", + "name": "GltfDocument", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetColors(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "kind": "method", + "name": "GetColors", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "set", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetIndices(LibreMetaverse.Assets.Gltf.GltfPrimitive)", + "kind": "method", + "name": "GetIndices", + "static": false, + "visibility": "public", + "type": "System.UInt32[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetInverseBindMatrices(LibreMetaverse.Assets.Gltf.GltfSkin)", + "kind": "method", + "name": "GetInverseBindMatrices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Matrix4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "skin", + "type": "LibreMetaverse.Assets.Gltf.GltfSkin", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetJoints(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "kind": "method", + "name": "GetJoints", + "static": false, + "visibility": "public", + "type": "System.ValueTuple\u003CSystem.UInt16, System.UInt16, System.UInt16, System.UInt16\u003E[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "j0" + }, + { + "type": "System.String", + "value": "j1" + }, + { + "type": "System.String", + "value": "j2" + }, + { + "type": "System.String", + "value": "j3" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "set", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetNormals(LibreMetaverse.Assets.Gltf.GltfPrimitive)", + "kind": "method", + "name": "GetNormals", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetPositions(LibreMetaverse.Assets.Gltf.GltfPrimitive)", + "kind": "method", + "name": "GetPositions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetSamplerQuaternion(LibreMetaverse.Assets.Gltf.GltfAnimationSampler)", + "kind": "method", + "name": "GetSamplerQuaternion", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sampler", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetSamplerTimestamps(LibreMetaverse.Assets.Gltf.GltfAnimationSampler)", + "kind": "method", + "name": "GetSamplerTimestamps", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sampler", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetSamplerVec3(LibreMetaverse.Assets.Gltf.GltfAnimationSampler)", + "kind": "method", + "name": "GetSamplerVec3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sampler", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetSamplerWeights(LibreMetaverse.Assets.Gltf.GltfAnimationSampler)", + "kind": "method", + "name": "GetSamplerWeights", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sampler", + "type": "LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetTangents(LibreMetaverse.Assets.Gltf.GltfPrimitive)", + "kind": "method", + "name": "GetTangents", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetTexCoords(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "kind": "method", + "name": "GetTexCoords", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetWeights(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "kind": "method", + "name": "GetWeights", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primitive", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "set", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.Load(System.Byte[],System.Func{System.String,System.Byte[]})", + "kind": "method", + "name": "Load", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfDocument", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bufferLoader", + "type": "System.Func\u003CSystem.String, System.Byte[]\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Func\u003CSystem.String, System.Byte[]\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGlb(System.Byte[])", + "kind": "method", + "name": "LoadGlb", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfDocument", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGltf(System.String,System.Func{System.String,System.Byte[]})", + "kind": "method", + "name": "LoadGltf", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfDocument", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "json", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bufferLoader", + "type": "System.Func\u003CSystem.String, System.Byte[]\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Func\u003CSystem.String, System.Byte[]\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.ToGlb", + "kind": "method", + "name": "ToGlb", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.ToJson(System.Boolean)", + "kind": "method", + "name": "ToJson", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pretty", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Accessors", + "kind": "property", + "name": "Accessors", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAccessor\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Animations", + "kind": "property", + "name": "Animations", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAnimation\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.BufferViews", + "kind": "property", + "name": "BufferViews", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfBufferView\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Buffers", + "kind": "property", + "name": "Buffers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfBuffer\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Copyright", + "kind": "property", + "name": "Copyright", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.DefaultScene", + "kind": "property", + "name": "DefaultScene", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.ExtensionsRequired", + "kind": "property", + "name": "ExtensionsRequired", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.ExtensionsUsed", + "kind": "property", + "name": "ExtensionsUsed", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Generator", + "kind": "property", + "name": "Generator", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Images", + "kind": "property", + "name": "Images", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfImage\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Materials", + "kind": "property", + "name": "Materials", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfDocumentMaterial\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Meshes", + "kind": "property", + "name": "Meshes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfMesh\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.MinVersion", + "kind": "property", + "name": "MinVersion", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Nodes", + "kind": "property", + "name": "Nodes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfNode\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Samplers", + "kind": "property", + "name": "Samplers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfSampler\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Scenes", + "kind": "property", + "name": "Scenes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfScene\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Skins", + "kind": "property", + "name": "Skins", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfSkin\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Textures", + "kind": "property", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfTexture\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Version", + "kind": "property", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfDocumentMaterial", + "signature": "LibreMetaverse.Assets.Gltf.GltfDocumentMaterial", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.#ctor", + "kind": "constructor", + "name": "GltfDocumentMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.AlphaCutoff", + "kind": "property", + "name": "AlphaCutoff", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.AlphaMode", + "kind": "property", + "name": "AlphaMode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.BaseColorFactor", + "kind": "property", + "name": "BaseColorFactor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.BaseColorTexture", + "kind": "property", + "name": "BaseColorTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfTextureRef", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.DoubleSided", + "kind": "property", + "name": "DoubleSided", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.EmissiveFactor", + "kind": "property", + "name": "EmissiveFactor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.EmissiveTexture", + "kind": "property", + "name": "EmissiveTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfTextureRef", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.MetallicFactor", + "kind": "property", + "name": "MetallicFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.MetallicRoughnessTexture", + "kind": "property", + "name": "MetallicRoughnessTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfTextureRef", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.NormalTexture", + "kind": "property", + "name": "NormalTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfNormalTextureRef", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.OcclusionTexture", + "kind": "property", + "name": "OcclusionTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfOcclusionTextureRef", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.RoughnessFactor", + "kind": "property", + "name": "RoughnessFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfImage", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfImage", + "signature": "LibreMetaverse.Assets.Gltf.GltfImage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfImage.#ctor", + "kind": "constructor", + "name": "GltfImage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.BufferView", + "kind": "property", + "name": "BufferView", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.MimeType", + "kind": "property", + "name": "MimeType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.Uri", + "kind": "property", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfMesh", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfMesh", + "signature": "LibreMetaverse.Assets.Gltf.GltfMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfMesh.#ctor", + "kind": "constructor", + "name": "GltfMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfMesh.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfMesh.Primitives", + "kind": "property", + "name": "Primitives", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfPrimitive\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfMesh.Weights", + "kind": "property", + "name": "Weights", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfNode", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfNode", + "signature": "LibreMetaverse.Assets.Gltf.GltfNode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfNode.#ctor", + "kind": "constructor", + "name": "GltfNode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Children", + "kind": "property", + "name": "Children", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Matrix", + "kind": "property", + "name": "Matrix", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.Matrix4\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Mesh", + "kind": "property", + "name": "Mesh", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Rotation", + "kind": "property", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Scale", + "kind": "property", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Skin", + "kind": "property", + "name": "Skin", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Translation", + "kind": "property", + "name": "Translation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Weights", + "kind": "property", + "name": "Weights", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfNormalTextureRef", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfNormalTextureRef", + "signature": "LibreMetaverse.Assets.Gltf.GltfNormalTextureRef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Gltf.GltfTextureRef", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfNormalTextureRef.#ctor", + "kind": "constructor", + "name": "GltfNormalTextureRef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNormalTextureRef.Scale", + "kind": "property", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfOcclusionTextureRef", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfOcclusionTextureRef", + "signature": "LibreMetaverse.Assets.Gltf.GltfOcclusionTextureRef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Assets.Gltf.GltfTextureRef", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfOcclusionTextureRef.#ctor", + "kind": "constructor", + "name": "GltfOcclusionTextureRef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfOcclusionTextureRef.Strength", + "kind": "property", + "name": "Strength", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitive", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfPrimitive", + "signature": "LibreMetaverse.Assets.Gltf.GltfPrimitive", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_COLOR_0", + "kind": "constant", + "name": "ATTR_COLOR_0", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "COLOR_0" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_JOINTS_0", + "kind": "constant", + "name": "ATTR_JOINTS_0", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "JOINTS_0" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_NORMAL", + "kind": "constant", + "name": "ATTR_NORMAL", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "NORMAL" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_POSITION", + "kind": "constant", + "name": "ATTR_POSITION", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "POSITION" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_TANGENT", + "kind": "constant", + "name": "ATTR_TANGENT", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "TANGENT" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_TEXCOORD_0", + "kind": "constant", + "name": "ATTR_TEXCOORD_0", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "TEXCOORD_0" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_TEXCOORD_1", + "kind": "constant", + "name": "ATTR_TEXCOORD_1", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "TEXCOORD_1" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_WEIGHTS_0", + "kind": "constant", + "name": "ATTR_WEIGHTS_0", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "WEIGHTS_0" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfPrimitive.#ctor", + "kind": "constructor", + "name": "GltfPrimitive", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Attributes", + "kind": "property", + "name": "Attributes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Indices", + "kind": "property", + "name": "Indices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Material", + "kind": "property", + "name": "Material", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Mode", + "kind": "property", + "name": "Mode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfPrimitiveMode", + "signature": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.LineLoop", + "kind": "enum_value", + "name": "LineLoop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.LineStrip", + "kind": "enum_value", + "name": "LineStrip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.Lines", + "kind": "enum_value", + "name": "Lines", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.Points", + "kind": "enum_value", + "name": "Points", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.TriangleFan", + "kind": "enum_value", + "name": "TriangleFan", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.TriangleStrip", + "kind": "enum_value", + "name": "TriangleStrip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode.Triangles", + "kind": "enum_value", + "name": "Triangles", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSampler", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfSampler", + "signature": "LibreMetaverse.Assets.Gltf.GltfSampler", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfSampler.#ctor", + "kind": "constructor", + "name": "GltfSampler", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSampler.MagFilter", + "kind": "property", + "name": "MagFilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSampler.MinFilter", + "kind": "property", + "name": "MinFilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSampler.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSampler.WrapS", + "kind": "property", + "name": "WrapS", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSampler.WrapT", + "kind": "property", + "name": "WrapT", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfSamplerFilter", + "signature": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.Linear", + "kind": "enum_value", + "name": "Linear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "9729" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.LinearMipmapLinear", + "kind": "enum_value", + "name": "LinearMipmapLinear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "9987" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.LinearMipmapNearest", + "kind": "enum_value", + "name": "LinearMipmapNearest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "9985" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.Nearest", + "kind": "enum_value", + "name": "Nearest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "9728" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.NearestMipmapLinear", + "kind": "enum_value", + "name": "NearestMipmapLinear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "9986" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.NearestMipmapNearest", + "kind": "enum_value", + "name": "NearestMipmapNearest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "9984" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerFilter.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfSamplerWrap", + "signature": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerWrap.ClampToEdge", + "kind": "enum_value", + "name": "ClampToEdge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "value": "33071" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerWrap.MirroredRepeat", + "kind": "enum_value", + "name": "MirroredRepeat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "value": "33648" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.Gltf.GltfSamplerWrap.Repeat", + "kind": "enum_value", + "name": "Repeat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "value": "10497" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfScene", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfScene", + "signature": "LibreMetaverse.Assets.Gltf.GltfScene", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfScene.#ctor", + "kind": "constructor", + "name": "GltfScene", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfScene.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfScene.Nodes", + "kind": "property", + "name": "Nodes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSkin", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfSkin", + "signature": "LibreMetaverse.Assets.Gltf.GltfSkin", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfSkin.#ctor", + "kind": "constructor", + "name": "GltfSkin", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.InverseBindMatrices", + "kind": "property", + "name": "InverseBindMatrices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Joints", + "kind": "property", + "name": "Joints", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Skeleton", + "kind": "property", + "name": "Skeleton", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfTexture", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfTexture", + "signature": "LibreMetaverse.Assets.Gltf.GltfTexture", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfTexture.#ctor", + "kind": "constructor", + "name": "GltfTexture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTexture.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTexture.Sampler", + "kind": "property", + "name": "Sampler", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTexture.Source", + "kind": "property", + "name": "Source", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.Gltf.GltfTextureRef", + "namespace": "LibreMetaverse.Assets.Gltf", + "name": "GltfTextureRef", + "signature": "LibreMetaverse.Assets.Gltf.GltfTextureRef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.Gltf.GltfTextureRef.#ctor", + "kind": "constructor", + "name": "GltfTextureRef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTextureRef.Index", + "kind": "property", + "name": "Index", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTextureRef.TexCoord", + "kind": "property", + "name": "TexCoord", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTextureRef.Transform", + "kind": "property", + "name": "Transform", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfTextureTransform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GltfAlphaMode", + "namespace": "LibreMetaverse.Assets", + "name": "GltfAlphaMode", + "signature": "LibreMetaverse.Assets.GltfAlphaMode", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GltfAlphaMode.Blend", + "kind": "enum_value", + "name": "Blend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GltfAlphaMode.Mask", + "kind": "enum_value", + "name": "Mask", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GltfAlphaMode.Opaque", + "kind": "enum_value", + "name": "Opaque", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.GltfAlphaMode", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.GltfTextureTransform", + "namespace": "LibreMetaverse.Assets", + "name": "GltfTextureTransform", + "signature": "LibreMetaverse.Assets.GltfTextureTransform", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Assets.GltfTextureTransform\u003E" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.GltfTextureTransform.Default", + "kind": "field", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.GltfTextureTransform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GltfTextureTransform.Offset", + "kind": "field", + "name": "Offset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GltfTextureTransform.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.GltfTextureTransform.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.Equals(LibreMetaverse.Assets.GltfTextureTransform)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Assets.GltfTextureTransform", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Assets.GltfTextureTransform.IsDefault", + "kind": "property", + "name": "IsDefault", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.OarFile", + "namespace": "LibreMetaverse.Assets", + "name": "OarFile", + "signature": "LibreMetaverse.Assets.OarFile", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.ClearAssetFolder(System.String)", + "kind": "method", + "name": "ClearAssetFolder", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetsPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.LoadObjects(System.Byte[],LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,System.Int64,System.Int64)", + "kind": "method", + "name": "LoadObjects", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectCallback", + "type": "LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.PackageArchive(System.String,System.String)", + "kind": "method", + "name": "PackageArchive", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "directoryName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SOGToXml2(System.Xml.XmlTextWriter,LibreMetaverse.Assets.AssetPrim)", + "kind": "method", + "name": "SOGToXml2", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "writer", + "type": "System.Xml.XmlTextWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Assets.AssetPrim", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SaveAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,System.Collections.Generic.IList{LibreMetaverse.UUID},System.String)", + "kind": "method", + "name": "SaveAssetsAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetManager", + "type": "LibreMetaverse.AssetManager", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assets", + "type": "System.Collections.Generic.IList\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "assetsPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Assets.OarFile.\u003CSaveAssetsAsync\u003Ed__18" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SaveParcels(LibreMetaverse.Simulator,System.String)", + "kind": "method", + "name": "SaveParcels", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parcelPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SavePrimsAsync(LibreMetaverse.AssetManager,System.Collections.Generic.IList{LibreMetaverse.Assets.AssetPrim},System.String,System.String)", + "kind": "method", + "name": "SavePrimsAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "manager", + "type": "LibreMetaverse.AssetManager", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prims", + "type": "System.Collections.Generic.IList\u003CLibreMetaverse.Assets.AssetPrim\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "primsPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetsPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Assets.OarFile.\u003CSavePrimsAsync\u003Ed__15" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SaveRegionSettings(LibreMetaverse.Simulator,System.String)", + "kind": "method", + "name": "SaveRegionSettings", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settingsPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SaveSimAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "SaveSimAssetsAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetManager", + "type": "LibreMetaverse.AssetManager", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetsPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Assets.OarFile.\u003CSaveSimAssetsAsync\u003Ed__19" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SaveTerrain(LibreMetaverse.Simulator,System.String)", + "kind": "method", + "name": "SaveTerrain", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "terrainPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.UnpackageArchive(System.String,LibreMetaverse.Assets.OarFile.AssetLoadedCallback,LibreMetaverse.Assets.OarFile.TerrainLoadedCallback,LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,LibreMetaverse.Assets.OarFile.SettingsLoadedCallback)", + "kind": "method", + "name": "UnpackageArchive", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetCallback", + "type": "LibreMetaverse.Assets.OarFile.AssetLoadedCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "terrainCallback", + "type": "LibreMetaverse.Assets.OarFile.TerrainLoadedCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectCallback", + "type": "LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settingsCallback", + "type": "LibreMetaverse.Assets.OarFile.SettingsLoadedCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.OarFile.AssetLoadedCallback", + "namespace": "LibreMetaverse.Assets", + "name": "AssetLoadedCallback", + "signature": "LibreMetaverse.Assets.OarFile.AssetLoadedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.Invoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "asset", + "type": "LibreMetaverse.Assets.Asset", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "AssetLoadedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.BeginInvoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "asset", + "type": "LibreMetaverse.Assets.Asset", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.Invoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "asset", + "type": "LibreMetaverse.Assets.Asset", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "namespace": "LibreMetaverse.Assets", + "name": "SceneObjectLoadedCallback", + "signature": "LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.Invoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "linkset", + "type": "LibreMetaverse.Assets.AssetPrim", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "SceneObjectLoadedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.BeginInvoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "linkset", + "type": "LibreMetaverse.Assets.AssetPrim", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.Invoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "linkset", + "type": "LibreMetaverse.Assets.AssetPrim", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback", + "namespace": "LibreMetaverse.Assets", + "name": "SettingsLoadedCallback", + "signature": "LibreMetaverse.Assets.OarFile.SettingsLoadedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.Invoke(System.String,LibreMetaverse.Assets.RegionSettings)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settings", + "type": "LibreMetaverse.Assets.RegionSettings", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "SettingsLoadedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.BeginInvoke(System.String,LibreMetaverse.Assets.RegionSettings,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "settings", + "type": "LibreMetaverse.Assets.RegionSettings", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.Invoke(System.String,LibreMetaverse.Assets.RegionSettings)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settings", + "type": "LibreMetaverse.Assets.RegionSettings", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback", + "namespace": "LibreMetaverse.Assets", + "name": "TerrainLoadedCallback", + "signature": "LibreMetaverse.Assets.OarFile.TerrainLoadedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.Invoke(System.Single[0:,0:],System.Int64,System.Int64)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "terrain", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "TerrainLoadedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "terrain", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.Invoke(System.Single[0:,0:],System.Int64,System.Int64)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "terrain", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesRead", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalBytes", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject", + "namespace": "LibreMetaverse.Assets", + "name": "PrimObject", + "signature": "LibreMetaverse.Assets.PrimObject", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Acceleration", + "kind": "field", + "name": "Acceleration", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.AllowedDrop", + "kind": "field", + "name": "AllowedDrop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.AngularVelocity", + "kind": "field", + "name": "AngularVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.AttachmentPosition", + "kind": "field", + "name": "AttachmentPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.AttachmentRotation", + "kind": "field", + "name": "AttachmentRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.BeforeAttachmentRotation", + "kind": "field", + "name": "BeforeAttachmentRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.CameraAtOffset", + "kind": "field", + "name": "CameraAtOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.CameraEyeOffset", + "kind": "field", + "name": "CameraEyeOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ClickAction", + "kind": "field", + "name": "ClickAction", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.CollisionSound", + "kind": "field", + "name": "CollisionSound", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.CollisionSoundVolume", + "kind": "field", + "name": "CollisionSoundVolume", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.DieAtEdge", + "kind": "field", + "name": "DieAtEdge", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Flexible", + "kind": "field", + "name": "Flexible", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.FlexibleBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Inventory", + "kind": "field", + "name": "Inventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.InventoryBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LastAttachmentPoint", + "kind": "field", + "name": "LastAttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LastOwnerID", + "kind": "field", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Light", + "kind": "field", + "name": "Light", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.LightBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LinkNumber", + "kind": "field", + "name": "LinkNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PCode", + "kind": "field", + "name": "PCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Particles", + "kind": "field", + "name": "Particles", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.ParticlesBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PassTouches", + "kind": "field", + "name": "PassTouches", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsBase", + "kind": "field", + "name": "PermsBase", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsEveryone", + "kind": "field", + "name": "PermsEveryone", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsGroup", + "kind": "field", + "name": "PermsGroup", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsNextOwner", + "kind": "field", + "name": "PermsNextOwner", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsOwner", + "kind": "field", + "name": "PermsOwner", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Phantom", + "kind": "field", + "name": "Phantom", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.RemoteScriptAccessPIN", + "kind": "field", + "name": "RemoteScriptAccessPIN", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ReturnAtEdge", + "kind": "field", + "name": "ReturnAtEdge", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.RezDate", + "kind": "field", + "name": "RezDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Sandbox", + "kind": "field", + "name": "Sandbox", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ScriptState", + "kind": "field", + "name": "ScriptState", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Sculpt", + "kind": "field", + "name": "Sculpt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.SculptBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Selected", + "kind": "field", + "name": "Selected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SelectorID", + "kind": "field", + "name": "SelectorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Shape", + "kind": "field", + "name": "Shape", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.ShapeBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SitName", + "kind": "field", + "name": "SitName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SitOffset", + "kind": "field", + "name": "SitOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SitRotation", + "kind": "field", + "name": "SitRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundFlags", + "kind": "field", + "name": "SoundFlags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundGain", + "kind": "field", + "name": "SoundGain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundID", + "kind": "field", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundRadius", + "kind": "field", + "name": "SoundRadius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Temporary", + "kind": "field", + "name": "Temporary", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Text", + "kind": "field", + "name": "Text", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.TextColor", + "kind": "field", + "name": "TextColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Textures", + "kind": "field", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntry", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.TouchName", + "kind": "field", + "name": "TouchName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.UsePhysics", + "kind": "field", + "name": "UsePhysics", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.Velocity", + "kind": "field", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.VolumeDetect", + "kind": "field", + "name": "VolumeDetect", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.#ctor", + "kind": "constructor", + "name": "PrimObject", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.FromPrimitive(LibreMetaverse.Primitive)", + "kind": "method", + "name": "FromPrimitive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ToPrimitive", + "kind": "method", + "name": "ToPrimitive", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.FlexibleBlock", + "namespace": "LibreMetaverse.Assets", + "name": "FlexibleBlock", + "signature": "LibreMetaverse.Assets.PrimObject.FlexibleBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Drag", + "kind": "field", + "name": "Drag", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Force", + "kind": "field", + "name": "Force", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Gravity", + "kind": "field", + "name": "Gravity", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Softness", + "kind": "field", + "name": "Softness", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Tension", + "kind": "field", + "name": "Tension", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Wind", + "kind": "field", + "name": "Wind", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.FlexibleBlock.#ctor", + "kind": "constructor", + "name": "FlexibleBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.InventoryBlock", + "namespace": "LibreMetaverse.Assets", + "name": "InventoryBlock", + "signature": "LibreMetaverse.Assets.PrimObject.InventoryBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.Items", + "kind": "field", + "name": "Items", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.Serial", + "kind": "field", + "name": "Serial", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.#ctor", + "kind": "constructor", + "name": "InventoryBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock", + "namespace": "LibreMetaverse.Assets", + "name": "ItemBlock", + "signature": "LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.LastOwnerID", + "kind": "field", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsBase", + "kind": "field", + "name": "PermsBase", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsEveryone", + "kind": "field", + "name": "PermsEveryone", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsGranterID", + "kind": "field", + "name": "PermsGranterID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsGroup", + "kind": "field", + "name": "PermsGroup", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsNextOwner", + "kind": "field", + "name": "PermsNextOwner", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsOwner", + "kind": "field", + "name": "PermsOwner", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.#ctor", + "kind": "constructor", + "name": "ItemBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.FromInventoryBase(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "FromInventoryBase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.LightBlock", + "namespace": "LibreMetaverse.Assets", + "name": "LightBlock", + "signature": "LibreMetaverse.Assets.PrimObject.LightBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Color", + "kind": "field", + "name": "Color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Cutoff", + "kind": "field", + "name": "Cutoff", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Falloff", + "kind": "field", + "name": "Falloff", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Intensity", + "kind": "field", + "name": "Intensity", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Radius", + "kind": "field", + "name": "Radius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.LightBlock.#ctor", + "kind": "constructor", + "name": "LightBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.LightBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.LightBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.ParticlesBlock", + "namespace": "LibreMetaverse.Assets", + "name": "ParticlesBlock", + "signature": "LibreMetaverse.Assets.PrimObject.ParticlesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Acceleration", + "kind": "field", + "name": "Acceleration", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.AngularVelocity", + "kind": "field", + "name": "AngularVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstParticleCount", + "kind": "field", + "name": "BurstParticleCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstRadius", + "kind": "field", + "name": "BurstRadius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstRate", + "kind": "field", + "name": "BurstRate", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstSpeedMax", + "kind": "field", + "name": "BurstSpeedMax", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstSpeedMin", + "kind": "field", + "name": "BurstSpeedMin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.DataFlags", + "kind": "field", + "name": "DataFlags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.InnerAngle", + "kind": "field", + "name": "InnerAngle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.MaxAge", + "kind": "field", + "name": "MaxAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.OuterAngle", + "kind": "field", + "name": "OuterAngle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.ParticleEndColor", + "kind": "field", + "name": "ParticleEndColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.ParticleEndScale", + "kind": "field", + "name": "ParticleEndScale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.ParticleMaxAge", + "kind": "field", + "name": "ParticleMaxAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.ParticleStartColor", + "kind": "field", + "name": "ParticleStartColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.ParticleStartScale", + "kind": "field", + "name": "ParticleStartScale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Pattern", + "kind": "field", + "name": "Pattern", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.StartAge", + "kind": "field", + "name": "StartAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.TextureID", + "kind": "field", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ParticlesBlock.#ctor", + "kind": "constructor", + "name": "ParticlesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.SculptBlock", + "namespace": "LibreMetaverse.Assets", + "name": "SculptBlock", + "signature": "LibreMetaverse.Assets.PrimObject.SculptBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SculptBlock.Texture", + "kind": "field", + "name": "Texture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.SculptBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.SculptBlock.#ctor", + "kind": "constructor", + "name": "SculptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.SculptBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.SculptBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.PrimObject.ShapeBlock", + "namespace": "LibreMetaverse.Assets", + "name": "ShapeBlock", + "signature": "LibreMetaverse.Assets.PrimObject.ShapeBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathBegin", + "kind": "field", + "name": "PathBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathCurve", + "kind": "field", + "name": "PathCurve", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathEnd", + "kind": "field", + "name": "PathEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathRadiusOffset", + "kind": "field", + "name": "PathRadiusOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathRevolutions", + "kind": "field", + "name": "PathRevolutions", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathScaleX", + "kind": "field", + "name": "PathScaleX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathScaleY", + "kind": "field", + "name": "PathScaleY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathShearX", + "kind": "field", + "name": "PathShearX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathShearY", + "kind": "field", + "name": "PathShearY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathSkew", + "kind": "field", + "name": "PathSkew", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTaperX", + "kind": "field", + "name": "PathTaperX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTaperY", + "kind": "field", + "name": "PathTaperY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTwist", + "kind": "field", + "name": "PathTwist", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTwistBegin", + "kind": "field", + "name": "PathTwistBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileBegin", + "kind": "field", + "name": "ProfileBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileCurve", + "kind": "field", + "name": "ProfileCurve", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileEnd", + "kind": "field", + "name": "ProfileEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileHollow", + "kind": "field", + "name": "ProfileHollow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ShapeBlock.#ctor", + "kind": "constructor", + "name": "ShapeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ShapeBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.PrimObject.ShapeBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.RegionSettings", + "namespace": "LibreMetaverse.Assets", + "name": "RegionSettings", + "signature": "LibreMetaverse.Assets.RegionSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.AgentLimit", + "kind": "field", + "name": "AgentLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.AllowDamage", + "kind": "field", + "name": "AllowDamage", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.AllowLandJoinDivide", + "kind": "field", + "name": "AllowLandJoinDivide", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.AllowLandResell", + "kind": "field", + "name": "AllowLandResell", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.BlockFly", + "kind": "field", + "name": "BlockFly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.BlockLandShowInSearch", + "kind": "field", + "name": "BlockLandShowInSearch", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.BlockTerraform", + "kind": "field", + "name": "BlockTerraform", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.DisableCollisions", + "kind": "field", + "name": "DisableCollisions", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.DisablePhysics", + "kind": "field", + "name": "DisablePhysics", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.DisableScripts", + "kind": "field", + "name": "DisableScripts", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.FixedSun", + "kind": "field", + "name": "FixedSun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.MaturityRating", + "kind": "field", + "name": "MaturityRating", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.ObjectBonus", + "kind": "field", + "name": "ObjectBonus", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.RestrictPushing", + "kind": "field", + "name": "RestrictPushing", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainDetail0", + "kind": "field", + "name": "TerrainDetail0", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainDetail1", + "kind": "field", + "name": "TerrainDetail1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainDetail2", + "kind": "field", + "name": "TerrainDetail2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainDetail3", + "kind": "field", + "name": "TerrainDetail3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange00", + "kind": "field", + "name": "TerrainHeightRange00", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange01", + "kind": "field", + "name": "TerrainHeightRange01", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange10", + "kind": "field", + "name": "TerrainHeightRange10", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange11", + "kind": "field", + "name": "TerrainHeightRange11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainLowerLimit", + "kind": "field", + "name": "TerrainLowerLimit", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainRaiseLimit", + "kind": "field", + "name": "TerrainRaiseLimit", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight00", + "kind": "field", + "name": "TerrainStartHeight00", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight01", + "kind": "field", + "name": "TerrainStartHeight01", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight10", + "kind": "field", + "name": "TerrainStartHeight10", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight11", + "kind": "field", + "name": "TerrainStartHeight11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.UseEstateSun", + "kind": "field", + "name": "UseEstateSun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.RegionSettings.WaterHeight", + "kind": "field", + "name": "WaterHeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.RegionSettings.#ctor", + "kind": "constructor", + "name": "RegionSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.RegionSettings.FromStream(System.IO.Stream)", + "kind": "method", + "name": "FromStream", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.RegionSettings", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.RegionSettings.ToXML(System.String)", + "kind": "method", + "name": "ToXML", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.TarArchiveReader", + "namespace": "LibreMetaverse.Assets", + "name": "TarArchiveReader", + "signature": "LibreMetaverse.Assets.TarArchiveReader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.#ctor(System.IO.Stream)", + "kind": "constructor", + "name": "TarArchiveReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.Close", + "kind": "method", + "name": "Close", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ConvertOctalBytesToDecimal(System.Byte[],System.Int32,System.Int32)", + "kind": "method", + "name": "ConvertOctalBytesToDecimal", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "startIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ReadEntry(System.String@,LibreMetaverse.Assets.TarArchiveReader.TarEntryType@)", + "kind": "method", + "name": "ReadEntry", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filePath", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "entryType", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "namespace": "LibreMetaverse.Assets", + "name": "TarEntryType", + "signature": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_BLOCK_SPECIAL", + "kind": "enum_value", + "name": "TYPE_BLOCK_SPECIAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_CHAR_SPECIAL", + "kind": "enum_value", + "name": "TYPE_CHAR_SPECIAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_CONTIGUOUS_FILE", + "kind": "enum_value", + "name": "TYPE_CONTIGUOUS_FILE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_DIRECTORY", + "kind": "enum_value", + "name": "TYPE_DIRECTORY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_FIFO", + "kind": "enum_value", + "name": "TYPE_FIFO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_HARD_LINK", + "kind": "enum_value", + "name": "TYPE_HARD_LINK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_NORMAL_FILE", + "kind": "enum_value", + "name": "TYPE_NORMAL_FILE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_SYMBOLIC_LINK", + "kind": "enum_value", + "name": "TYPE_SYMBOLIC_LINK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarArchiveReader.TarEntryType.TYPE_UNKNOWN", + "kind": "enum_value", + "name": "TYPE_UNKNOWN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.TarArchiveWriter", + "namespace": "LibreMetaverse.Assets", + "name": "TarArchiveWriter", + "signature": "LibreMetaverse.Assets.TarArchiveWriter", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.#ctor(System.IO.Stream)", + "kind": "constructor", + "name": "TarArchiveWriter", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.Close", + "kind": "method", + "name": "Close", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.ConvertDecimalToPaddedOctalBytes(System.Int32,System.Int32)", + "kind": "method", + "name": "ConvertDecimalToPaddedOctalBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "d", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "padding", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteDir(System.String)", + "kind": "method", + "name": "WriteDir", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dirName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.Byte[])", + "kind": "method", + "name": "WriteFile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filePath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.String)", + "kind": "method", + "name": "WriteFile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filePath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Assets.TarHeader", + "namespace": "LibreMetaverse.Assets", + "name": "TarHeader", + "signature": "LibreMetaverse.Assets.TarHeader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Assets.TarHeader.EntryType", + "kind": "field", + "name": "EntryType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarHeader.FilePath", + "kind": "field", + "name": "FilePath", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Assets.TarHeader.FileSize", + "kind": "field", + "name": "FileSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Assets.TarHeader.#ctor", + "kind": "constructor", + "name": "TarHeader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AttachedSoundEventArgs", + "namespace": "LibreMetaverse", + "name": "AttachedSoundEventArgs", + "signature": "LibreMetaverse.AttachedSoundEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AttachedSoundEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,LibreMetaverse.SoundFlags)", + "kind": "constructor", + "name": "AttachedSoundEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.SoundFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.Flags", + "kind": "property", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.Gain", + "kind": "property", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.SoundID", + "kind": "property", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AttachedSoundGainChangeEventArgs", + "namespace": "LibreMetaverse", + "name": "AttachedSoundGainChangeEventArgs", + "signature": "LibreMetaverse.AttachedSoundGainChangeEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AttachedSoundGainChangeEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Single)", + "kind": "constructor", + "name": "AttachedSoundGainChangeEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundGainChangeEventArgs.Gain", + "kind": "property", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundGainChangeEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttachedSoundGainChangeEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AttentionData", + "namespace": "LibreMetaverse", + "name": "AttentionData", + "signature": "LibreMetaverse.AttentionData", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.AttentionData.Priority", + "kind": "property", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttentionData.Timeout", + "kind": "property", + "name": "Timeout", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AttentionSet", + "namespace": "LibreMetaverse", + "name": "AttentionSet", + "signature": "LibreMetaverse.AttentionSet", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AttentionSet.Get(LibreMetaverse.LookAtType)", + "kind": "method", + "name": "Get", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AttentionData\u0026", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.LookAtType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttentionSet.Entries", + "kind": "property", + "name": "Entries", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AttentionData[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AttentionSet.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Avatar", + "namespace": "LibreMetaverse", + "name": "Avatar", + "signature": "LibreMetaverse.Avatar", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Primitive", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Primitive\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Avatar.Animations", + "kind": "field", + "name": "Animations", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AppearanceFlags", + "kind": "field", + "name": "AppearanceFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AppearanceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AppearanceVersion", + "kind": "field", + "name": "AppearanceVersion", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Attachments", + "kind": "field", + "name": "Attachments", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Avatar.Attachment\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.COFVersion", + "kind": "field", + "name": "COFVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.ControlFlags", + "kind": "field", + "name": "ControlFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager.ControlFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Groups", + "kind": "field", + "name": "Groups", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.HoverHeight", + "kind": "field", + "name": "HoverHeight", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.ProfileInterests", + "kind": "field", + "name": "ProfileInterests", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar.Interests", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.ProfileProperties", + "kind": "field", + "name": "ProfileProperties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.ProfileStatistics", + "kind": "field", + "name": "ProfileStatistics", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar.Statistics", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.VisualParameters", + "kind": "field", + "name": "VisualParameters", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.#ctor", + "kind": "constructor", + "name": "Avatar", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.DecodeVisualParams", + "kind": "method", + "name": "DecodeVisualParams", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Avatar", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "O", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.FirstName", + "kind": "property", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.GroupName", + "kind": "property", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.LastName", + "kind": "property", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Avatar.Attachment", + "namespace": "LibreMetaverse", + "name": "Attachment", + "signature": "LibreMetaverse.Avatar.Attachment", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Avatar.Attachment\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Avatar.Attachment.AttachmentID", + "kind": "field", + "name": "AttachmentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Attachment.AttachmentPoint", + "kind": "field", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Attachment.Equals(LibreMetaverse.Avatar.Attachment)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Avatar.Attachment", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Attachment.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Attachment.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Avatar.AvatarProperties", + "namespace": "LibreMetaverse", + "name": "AvatarProperties", + "signature": "LibreMetaverse.Avatar.AvatarProperties", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.AboutText", + "kind": "field", + "name": "AboutText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.BornOn", + "kind": "field", + "name": "BornOn", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.CharterMember", + "kind": "field", + "name": "CharterMember", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.FirstLifeImage", + "kind": "field", + "name": "FirstLifeImage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.FirstLifeText", + "kind": "field", + "name": "FirstLifeText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.Partner", + "kind": "field", + "name": "Partner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.ProfileImage", + "kind": "field", + "name": "ProfileImage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.ProfileURL", + "kind": "field", + "name": "ProfileURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.AvatarProperties.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "O", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.AvatarProperties.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.AllowPublish", + "kind": "property", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.Identified", + "kind": "property", + "name": "Identified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.MaturePublish", + "kind": "property", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.Online", + "kind": "property", + "name": "Online", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.Transacted", + "kind": "property", + "name": "Transacted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Avatar.Interests", + "namespace": "LibreMetaverse", + "name": "Interests", + "signature": "LibreMetaverse.Avatar.Interests", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Avatar.Interests.LanguagesText", + "kind": "field", + "name": "LanguagesText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Interests.SkillsMask", + "kind": "field", + "name": "SkillsMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Interests.SkillsText", + "kind": "field", + "name": "SkillsText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Interests.WantToMask", + "kind": "field", + "name": "WantToMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Interests.WantToText", + "kind": "field", + "name": "WantToText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Interests.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Avatar.Interests", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "O", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Interests.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Avatar.Statistics", + "namespace": "LibreMetaverse", + "name": "Statistics", + "signature": "LibreMetaverse.Avatar.Statistics", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.AppearanceNegative", + "kind": "field", + "name": "AppearanceNegative", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.AppearancePositive", + "kind": "field", + "name": "AppearancePositive", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.BehaviorNegative", + "kind": "field", + "name": "BehaviorNegative", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.BehaviorPositive", + "kind": "field", + "name": "BehaviorPositive", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.BuildingNegative", + "kind": "field", + "name": "BuildingNegative", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.BuildingPositive", + "kind": "field", + "name": "BuildingPositive", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.GivenNegative", + "kind": "field", + "name": "GivenNegative", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Avatar.Statistics.GivenPositive", + "kind": "field", + "name": "GivenPositive", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Statistics.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Avatar.Statistics", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "O", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Avatar.Statistics.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarAnimationEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarAnimationEventArgs", + "signature": "LibreMetaverse.AvatarAnimationEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarAnimationEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.Animation})", + "kind": "constructor", + "name": "AvatarAnimationEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "anims", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAnimationEventArgs.Animations", + "kind": "property", + "name": "Animations", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAnimationEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarAppearanceEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarAppearanceEventArgs", + "signature": "LibreMetaverse.AvatarAppearanceEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "kind": "constructor", + "name": "AvatarAppearanceEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isTrial", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "defaultTexture", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceTextures", + "type": "LibreMetaverse.Primitive.TextureEntryFace[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "visualParams", + "type": "System.Collections.Generic.List\u003CSystem.Byte\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "appearanceVersion", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "COFVersion", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "appearanceFlags", + "type": "LibreMetaverse.AppearanceFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "childCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.DecodeVisualParams", + "kind": "method", + "name": "DecodeVisualParams", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.AppearanceFlags", + "kind": "property", + "name": "AppearanceFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AppearanceFlags", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.AppearanceVersion", + "kind": "property", + "name": "AppearanceVersion", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.COFVersion", + "kind": "property", + "name": "COFVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.ChildCount", + "kind": "property", + "name": "ChildCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.DefaultTexture", + "kind": "property", + "name": "DefaultTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.FaceTextures", + "kind": "property", + "name": "FaceTextures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.IsTrial", + "kind": "property", + "name": "IsTrial", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.VisualParams", + "kind": "property", + "name": "VisualParams", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Byte\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarClassifiedReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarClassifiedReplyEventArgs", + "signature": "LibreMetaverse.AvatarClassifiedReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarClassifiedReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "kind": "constructor", + "name": "AvatarClassifiedReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "classifieds", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarClassifiedReplyEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarClassifiedReplyEventArgs.Classifieds", + "kind": "property", + "name": "Classifieds", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarGroup", + "namespace": "LibreMetaverse", + "name": "AvatarGroup", + "signature": "LibreMetaverse.AvatarGroup", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.AvatarGroup.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarGroup.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarGroup.GroupInsigniaID", + "kind": "field", + "name": "GroupInsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarGroup.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarGroup.GroupPowers", + "kind": "field", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarGroup.GroupTitle", + "kind": "field", + "name": "GroupTitle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarGroup.ListInProfile", + "kind": "field", + "name": "ListInProfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarGroupsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarGroupsReplyEventArgs", + "signature": "LibreMetaverse.AvatarGroupsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarGroupsReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.AvatarGroup})", + "kind": "constructor", + "name": "AvatarGroupsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avatarGroups", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.AvatarGroup\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarGroupsReplyEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarGroupsReplyEventArgs.Groups", + "kind": "property", + "name": "Groups", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.AvatarGroup\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarInterestsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarInterestsReplyEventArgs", + "signature": "LibreMetaverse.AvatarInterestsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarInterestsReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.Avatar.Interests)", + "kind": "constructor", + "name": "AvatarInterestsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "interests", + "type": "LibreMetaverse.Avatar.Interests", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarInterestsReplyEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarInterestsReplyEventArgs.Interests", + "kind": "property", + "name": "Interests", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar.Interests", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarManager", + "namespace": "LibreMetaverse", + "name": "AvatarManager", + "signature": "LibreMetaverse.AvatarManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarAnimation", + "kind": "event", + "name": "AvatarAnimation", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarAnimationEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarAppearance", + "kind": "event", + "name": "AvatarAppearance", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarAppearanceEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarClassifiedReply", + "kind": "event", + "name": "AvatarClassifiedReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarClassifiedReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarGroupsReply", + "kind": "event", + "name": "AvatarGroupsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarGroupsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarInterestsReply", + "kind": "event", + "name": "AvatarInterestsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarInterestsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarNotesReply", + "kind": "event", + "name": "AvatarNotesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarNotesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarPickerReply", + "kind": "event", + "name": "AvatarPickerReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarPickerReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarPicksReply", + "kind": "event", + "name": "AvatarPicksReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarPicksReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.AvatarPropertiesReply", + "kind": "event", + "name": "AvatarPropertiesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarPropertiesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.ClassifiedInfoReply", + "kind": "event", + "name": "ClassifiedInfoReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ClassifiedInfoReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.DisplayNameUpdate", + "kind": "event", + "name": "DisplayNameUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DisplayNameUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.PickInfoReply", + "kind": "event", + "name": "PickInfoReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PickInfoReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.UUIDNameReply", + "kind": "event", + "name": "UUIDNameReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.UUIDNameReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.ViewerEffect", + "kind": "event", + "name": "ViewerEffect", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ViewerEffectEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.ViewerEffectLookAt", + "kind": "event", + "name": "ViewerEffectLookAt", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ViewerEffectLookAtEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.AvatarManager.ViewerEffectPointAt", + "kind": "event", + "name": "ViewerEffectPointAt", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ViewerEffectPointAtEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "AvatarManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.AgentProfileAvailable", + "kind": "method", + "name": "AgentProfileAvailable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.DisplayNamesAvailable", + "kind": "method", + "name": "DisplayNamesAvailable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.GetDisplayNamesAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "GetDisplayNamesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.AgentDisplayName[], LibreMetaverse.UUID[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "names" + }, + { + "type": "System.String", + "value": "badIDs" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ids", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AvatarManager.\u003CGetDisplayNamesAsync\u003Ed__105" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAgentProfileAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAgentProfileAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.AgentProfileMessage\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "profile" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AvatarManager.\u003CRequestAgentProfileAsync\u003Ed__109" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarClassified(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestAvatarClassified", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarName(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestAvatarName", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNameSearch(System.String,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestAvatarNameSearch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNames(System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "method", + "name": "RequestAvatarNames", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ids", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNotes(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestAvatarNotes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarPicks(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestAvatarPicks", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarProperties(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestAvatarProperties", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestClassifiedInfo(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestClassifiedInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "classifiedid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestOwnAvatarTextures", + "kind": "method", + "name": "RequestOwnAvatarTextures", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestPickInfo(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestPickInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pickid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AvatarManager.RequestTrackAgent(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestTrackAgent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "preyID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarNotesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarNotesReplyEventArgs", + "signature": "LibreMetaverse.AvatarNotesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarNotesReplyEventArgs.#ctor(LibreMetaverse.UUID,System.String)", + "kind": "constructor", + "name": "AvatarNotesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notes", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarNotesReplyEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarNotesReplyEventArgs.Notes", + "kind": "property", + "name": "Notes", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarPickerReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarPickerReplyEventArgs", + "signature": "LibreMetaverse.AvatarPickerReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarPickerReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "kind": "constructor", + "name": "AvatarPickerReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avatars", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarPickerReplyEventArgs.Avatars", + "kind": "property", + "name": "Avatars", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarPickerReplyEventArgs.QueryID", + "kind": "property", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarPicksReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarPicksReplyEventArgs", + "signature": "LibreMetaverse.AvatarPicksReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarPicksReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "kind": "constructor", + "name": "AvatarPicksReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "picks", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarPicksReplyEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarPicksReplyEventArgs.Picks", + "kind": "property", + "name": "Picks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarPropertiesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarPropertiesReplyEventArgs", + "signature": "LibreMetaverse.AvatarPropertiesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarPropertiesReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.Avatar.AvatarProperties)", + "kind": "constructor", + "name": "AvatarPropertiesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "properties", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarPropertiesReplyEventArgs.AvatarID", + "kind": "property", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarPropertiesReplyEventArgs.Properties", + "kind": "property", + "name": "Properties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar.AvatarProperties", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarRenderInfoEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarRenderInfoEventArgs", + "signature": "LibreMetaverse.AvatarRenderInfoEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarRenderInfoEventArgs.#ctor(LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage)", + "kind": "constructor", + "name": "AvatarRenderInfoEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "renderInfo", + "type": "LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarRenderInfoEventArgs.RenderInfo", + "kind": "property", + "name": "RenderInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarSitChangedEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarSitChangedEventArgs", + "signature": "LibreMetaverse.AvatarSitChangedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarSitChangedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Avatar,System.UInt32,System.UInt32)", + "kind": "constructor", + "name": "AvatarSitChangedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avatar", + "type": "LibreMetaverse.Avatar", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sittingOn", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "oldSeat", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitChangedEventArgs.Avatar", + "kind": "property", + "name": "Avatar", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitChangedEventArgs.OldSeat", + "kind": "property", + "name": "OldSeat", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitChangedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitChangedEventArgs.SittingOn", + "kind": "property", + "name": "SittingOn", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarSitResponseEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarSitResponseEventArgs", + "signature": "LibreMetaverse.AvatarSitResponseEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarSitResponseEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "kind": "constructor", + "name": "AvatarSitResponseEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "autoPilot", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cameraAtOffset", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cameraEyeOffset", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forceMouselook", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sitPosition", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sitRotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.Autopilot", + "kind": "property", + "name": "Autopilot", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.CameraAtOffset", + "kind": "property", + "name": "CameraAtOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.CameraEyeOffset", + "kind": "property", + "name": "CameraEyeOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.ForceMouselook", + "kind": "property", + "name": "ForceMouselook", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.SitPosition", + "kind": "property", + "name": "SitPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.SitRotation", + "kind": "property", + "name": "SitRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarTextureIndex", + "namespace": "LibreMetaverse", + "name": "AvatarTextureIndex", + "signature": "LibreMetaverse.AvatarTextureIndex", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Aux1Baked", + "kind": "enum_value", + "name": "Aux1Baked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Aux1Tattoo", + "kind": "enum_value", + "name": "Aux1Tattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Aux2Baked", + "kind": "enum_value", + "name": "Aux2Baked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Aux2Tattoo", + "kind": "enum_value", + "name": "Aux2Tattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Aux3Baked", + "kind": "enum_value", + "name": "Aux3Baked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Aux3Tattoo", + "kind": "enum_value", + "name": "Aux3Tattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.EyesAlpha", + "kind": "enum_value", + "name": "EyesAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.EyesBaked", + "kind": "enum_value", + "name": "EyesBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.EyesIris", + "kind": "enum_value", + "name": "EyesIris", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.EyesTattoo", + "kind": "enum_value", + "name": "EyesTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Hair", + "kind": "enum_value", + "name": "Hair", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HairAlpha", + "kind": "enum_value", + "name": "HairAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HairBaked", + "kind": "enum_value", + "name": "HairBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HairTattoo", + "kind": "enum_value", + "name": "HairTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HeadAlpha", + "kind": "enum_value", + "name": "HeadAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HeadBaked", + "kind": "enum_value", + "name": "HeadBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HeadBodypaint", + "kind": "enum_value", + "name": "HeadBodypaint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HeadTattoo", + "kind": "enum_value", + "name": "HeadTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.HeadUniversalTattoo", + "kind": "enum_value", + "name": "HeadUniversalTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LeftArmBaked", + "kind": "enum_value", + "name": "LeftArmBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LeftArmTattoo", + "kind": "enum_value", + "name": "LeftArmTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LeftLegTattoo", + "kind": "enum_value", + "name": "LeftLegTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LegLegBaked", + "kind": "enum_value", + "name": "LegLegBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerAlpha", + "kind": "enum_value", + "name": "LowerAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerBaked", + "kind": "enum_value", + "name": "LowerBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerBodypaint", + "kind": "enum_value", + "name": "LowerBodypaint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerJacket", + "kind": "enum_value", + "name": "LowerJacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerPants", + "kind": "enum_value", + "name": "LowerPants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerShoes", + "kind": "enum_value", + "name": "LowerShoes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerSocks", + "kind": "enum_value", + "name": "LowerSocks", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerTattoo", + "kind": "enum_value", + "name": "LowerTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerUnderpants", + "kind": "enum_value", + "name": "LowerUnderpants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.LowerUniversalTattoo", + "kind": "enum_value", + "name": "LowerUniversalTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.NumberOfEntries", + "kind": "enum_value", + "name": "NumberOfEntries", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Skirt", + "kind": "enum_value", + "name": "Skirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.SkirtBaked", + "kind": "enum_value", + "name": "SkirtBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.SkirtTattoo", + "kind": "enum_value", + "name": "SkirtTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperAlpha", + "kind": "enum_value", + "name": "UpperAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperBaked", + "kind": "enum_value", + "name": "UpperBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperBodypaint", + "kind": "enum_value", + "name": "UpperBodypaint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperGloves", + "kind": "enum_value", + "name": "UpperGloves", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperJacket", + "kind": "enum_value", + "name": "UpperJacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperShirt", + "kind": "enum_value", + "name": "UpperShirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperTattoo", + "kind": "enum_value", + "name": "UpperTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperUndershirt", + "kind": "enum_value", + "name": "UpperUndershirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.AvatarTextureIndex.UpperUniversalTattoo", + "kind": "enum_value", + "name": "UpperUniversalTattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AvatarTextureIndex", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AvatarTextureIndex", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AvatarUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "AvatarUpdateEventArgs", + "signature": "LibreMetaverse.AvatarUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.AvatarUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Avatar,System.UInt16,System.Boolean)", + "kind": "constructor", + "name": "AvatarUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avatar", + "type": "LibreMetaverse.Avatar", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeDilation", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isNew", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarUpdateEventArgs.Avatar", + "kind": "property", + "name": "Avatar", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Avatar", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarUpdateEventArgs.IsNew", + "kind": "property", + "name": "IsNew", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarUpdateEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AvatarUpdateEventArgs.TimeDilation", + "kind": "property", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BakeType", + "namespace": "LibreMetaverse", + "name": "BakeType", + "signature": "LibreMetaverse.BakeType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.BakeType.BakedAux1", + "kind": "enum_value", + "name": "BakedAux1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.BakedAux2", + "kind": "enum_value", + "name": "BakedAux2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.BakedAux3", + "kind": "enum_value", + "name": "BakedAux3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.BakedLeftArm", + "kind": "enum_value", + "name": "BakedLeftArm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.BakedLeftLeg", + "kind": "enum_value", + "name": "BakedLeftLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.Eyes", + "kind": "enum_value", + "name": "Eyes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.Hair", + "kind": "enum_value", + "name": "Hair", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.Head", + "kind": "enum_value", + "name": "Head", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.LowerBody", + "kind": "enum_value", + "name": "LowerBody", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.Skirt", + "kind": "enum_value", + "name": "Skirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BakeType.UpperBody", + "kind": "enum_value", + "name": "UpperBody", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BakeType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BalanceEventArgs", + "namespace": "LibreMetaverse", + "name": "BalanceEventArgs", + "signature": "LibreMetaverse.BalanceEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.BalanceEventArgs.#ctor(System.Int32)", + "kind": "constructor", + "name": "BalanceEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "balance", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.BalanceEventArgs.Balance", + "kind": "property", + "name": "Balance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BannedAgentsEventArgs", + "namespace": "LibreMetaverse", + "name": "BannedAgentsEventArgs", + "signature": "LibreMetaverse.BannedAgentsEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.BannedAgentsEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.DateTime})", + "kind": "constructor", + "name": "BannedAgentsEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bannedAgents", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.DateTime\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.BannedAgentsEventArgs.BannedAgents", + "kind": "property", + "name": "BannedAgents", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.DateTime\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.BannedAgentsEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.BannedAgentsEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BinBVHAnimationReader", + "namespace": "LibreMetaverse", + "name": "BinBVHAnimationReader", + "signature": "LibreMetaverse.BinBVHAnimationReader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.EaseInTime", + "kind": "field", + "name": "EaseInTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.EaseOutTime", + "kind": "field", + "name": "EaseOutTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.ExpressionName", + "kind": "field", + "name": "ExpressionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.HandPose", + "kind": "field", + "name": "HandPose", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.InPoint", + "kind": "field", + "name": "InPoint", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.JointCount", + "kind": "field", + "name": "JointCount", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.Length", + "kind": "field", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.Loop", + "kind": "field", + "name": "Loop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.OutPoint", + "kind": "field", + "name": "OutPoint", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.joints", + "kind": "field", + "name": "joints", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.binBVHJoint[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.unknown0", + "kind": "field", + "name": "unknown0", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BinBVHAnimationReader.unknown1", + "kind": "field", + "name": "unknown1", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.#ctor(System.Byte[])", + "kind": "constructor", + "name": "BinBVHAnimationReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "animationdata", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(LibreMetaverse.BinBVHAnimationReader)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.BinBVHAnimationReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(LibreMetaverse.binBVHJoint[],LibreMetaverse.binBVHJoint[])", + "kind": "method", + "name": "Equals", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "arr1", + "type": "LibreMetaverse.binBVHJoint[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "arr2", + "type": "LibreMetaverse.binBVHJoint[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.ReadBytesUntilNull(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ReadBytesUntilNull", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readJoint(System.Byte[],System.Int32@)", + "kind": "method", + "name": "readJoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.binBVHJoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readKeys(System.Byte[],System.Int32@,System.Int32,System.Single,System.Single)", + "kind": "method", + "name": "readKeys", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.binBVHJointKey[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "keycount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BitPack", + "namespace": "LibreMetaverse", + "name": "BitPack", + "signature": "LibreMetaverse.BitPack", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.BitPack.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "BitPack", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackBit(System.Boolean)", + "kind": "method", + "name": "PackBit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bit", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackBits(System.Int32,System.Int32)", + "kind": "method", + "name": "PackBits", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackBits(System.UInt32,System.Int32)", + "kind": "method", + "name": "PackBits", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "totalCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackColor(LibreMetaverse.Color4)", + "kind": "method", + "name": "PackColor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackFixed(System.Single,System.Boolean,System.Int32,System.Int32)", + "kind": "method", + "name": "PackFixed", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isSigned", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "intBits", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fracBits", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackFloat(System.Single)", + "kind": "method", + "name": "PackFloat", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.PackUUID(LibreMetaverse.UUID)", + "kind": "method", + "name": "PackUUID", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackBits(System.Int32)", + "kind": "method", + "name": "UnpackBits", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "totalCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackByte", + "kind": "method", + "name": "UnpackByte", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackFixed(System.Boolean,System.Int32,System.Int32)", + "kind": "method", + "name": "UnpackFixed", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "signed", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "intBits", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fracBits", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackFloat", + "kind": "method", + "name": "UnpackFloat", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackInt", + "kind": "method", + "name": "UnpackInt", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackShort", + "kind": "method", + "name": "UnpackShort", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackString(System.Int32)", + "kind": "method", + "name": "UnpackString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "size", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackUBits(System.Int32)", + "kind": "method", + "name": "UnpackUBits", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "totalCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackUInt", + "kind": "method", + "name": "UnpackUInt", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackUShort", + "kind": "method", + "name": "UnpackUShort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.BitPack.UnpackUUID", + "kind": "method", + "name": "UnpackUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.BitPack.BitPos", + "kind": "property", + "name": "BitPos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.BitPack.BytePos", + "kind": "property", + "name": "BytePos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BorderCrossingDirection", + "namespace": "LibreMetaverse", + "name": "BorderCrossingDirection", + "signature": "LibreMetaverse.BorderCrossingDirection", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.BorderCrossingDirection.East", + "kind": "enum_value", + "name": "East", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BorderCrossingDirection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BorderCrossingDirection", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BorderCrossingDirection.North", + "kind": "enum_value", + "name": "North", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BorderCrossingDirection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BorderCrossingDirection", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BorderCrossingDirection.South", + "kind": "enum_value", + "name": "South", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BorderCrossingDirection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BorderCrossingDirection", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BorderCrossingDirection.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BorderCrossingDirection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BorderCrossingDirection", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BorderCrossingDirection.West", + "kind": "enum_value", + "name": "West", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BorderCrossingDirection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.BorderCrossingDirection", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.BuddyListEntry", + "namespace": "LibreMetaverse", + "name": "BuddyListEntry", + "signature": "LibreMetaverse.BuddyListEntry", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.BuddyListEntry.BuddyId", + "kind": "field", + "name": "BuddyId", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.BuddyListEntry.BuddyRightsGiven", + "kind": "field", + "name": "BuddyRightsGiven", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.BuddyListEntry.BuddyRightsHas", + "kind": "field", + "name": "BuddyRightsHas", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Bumpiness", + "namespace": "LibreMetaverse", + "name": "Bumpiness", + "signature": "LibreMetaverse.Bumpiness", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Bumpiness.Bark", + "kind": "enum_value", + "name": "Bark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Bricks", + "kind": "enum_value", + "name": "Bricks", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Brightness", + "kind": "enum_value", + "name": "Brightness", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Checker", + "kind": "enum_value", + "name": "Checker", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Concrete", + "kind": "enum_value", + "name": "Concrete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Crustytile", + "kind": "enum_value", + "name": "Crustytile", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Cutstone", + "kind": "enum_value", + "name": "Cutstone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Darkness", + "kind": "enum_value", + "name": "Darkness", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Discs", + "kind": "enum_value", + "name": "Discs", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Gravel", + "kind": "enum_value", + "name": "Gravel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "11" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Petridish", + "kind": "enum_value", + "name": "Petridish", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "12" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Siding", + "kind": "enum_value", + "name": "Siding", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "13" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Stonetile", + "kind": "enum_value", + "name": "Stonetile", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "14" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Stucco", + "kind": "enum_value", + "name": "Stucco", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "15" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Suction", + "kind": "enum_value", + "name": "Suction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Weave", + "kind": "enum_value", + "name": "Weave", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "17" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Bumpiness.Woodgrain", + "kind": "enum_value", + "name": "Woodgrain", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Bumpiness", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CallingCardOfferedEventArgs", + "namespace": "LibreMetaverse", + "name": "CallingCardOfferedEventArgs", + "signature": "LibreMetaverse.CallingCardOfferedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CallingCardOfferedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "CallingCardOfferedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CallingCardOfferedEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CallingCardOfferedEventArgs.AgentName", + "kind": "property", + "name": "AgentName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CallingCardOfferedEventArgs.TransactionID", + "kind": "property", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CameraConstraintEventArgs", + "namespace": "LibreMetaverse", + "name": "CameraConstraintEventArgs", + "signature": "LibreMetaverse.CameraConstraintEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.CameraConstraintEventArgs.#ctor(LibreMetaverse.Vector4)", + "kind": "constructor", + "name": "CameraConstraintEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "collidePlane", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CameraConstraintEventArgs.CollidePlane", + "kind": "property", + "name": "CollidePlane", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CapabilitiesReceivedEventArgs", + "namespace": "LibreMetaverse", + "name": "CapabilitiesReceivedEventArgs", + "signature": "LibreMetaverse.CapabilitiesReceivedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CapabilitiesReceivedEventArgs.#ctor(LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "CapabilitiesReceivedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CapabilitiesReceivedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Caps", + "namespace": "LibreMetaverse", + "name": "Caps", + "signature": "LibreMetaverse.Caps", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Caps.CapabilitiesReceived", + "kind": "event", + "name": "CapabilitiesReceived", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.CapabilitiesReceivedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Caps.AllCapabilities", + "kind": "field", + "name": "AllCapabilities", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDArray", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Caps.Simulator", + "kind": "field", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.Capabilities", + "kind": "method", + "name": "Capabilities", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CTKey, TValue\u003E.KeyCollection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.CapabilityNameFromURI(System.Uri)", + "kind": "method", + "name": "CapabilityNameFromURI", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cap", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.CapabilityURI(System.String)", + "kind": "method", + "name": "CapabilityURI", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capability", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.Disconnect(System.Boolean)", + "kind": "method", + "name": "Disconnect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "immediate", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.GetMeshCapURI", + "kind": "method", + "name": "GetMeshCapURI", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Caps.GetTextureCapURI", + "kind": "method", + "name": "GetTextureCapURI", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Caps.EventQueue", + "kind": "property", + "name": "EventQueue", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Http.EventQueueClient", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Caps.IsEventQueueRunning", + "kind": "property", + "name": "IsEventQueueRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Caps.SeedCapsURI", + "kind": "property", + "name": "SeedCapsURI", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Caps.EventQueueCallback", + "namespace": "LibreMetaverse", + "name": "EventQueueCallback", + "signature": "LibreMetaverse.Caps.EventQueueCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.Invoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsKey", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "LibreMetaverse.Interfaces.IMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "EventQueueCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.BeginInvoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsKey", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "message", + "type": "LibreMetaverse.Interfaces.IMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.Invoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsKey", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "LibreMetaverse.Interfaces.IMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CapsCategory", + "namespace": "LibreMetaverse", + "name": "CapsCategory", + "signature": "LibreMetaverse.CapsCategory", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.CapsCategory.AssetFetch", + "kind": "enum_value", + "name": "AssetFetch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.AssetUpload", + "kind": "enum_value", + "name": "AssetUpload", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.DisplayName", + "kind": "enum_value", + "name": "DisplayName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.EventQueue", + "kind": "enum_value", + "name": "EventQueue", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.Inventory", + "kind": "enum_value", + "name": "Inventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.RenderMaterials", + "kind": "enum_value", + "name": "RenderMaterials", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CapsCategory.Voice", + "kind": "enum_value", + "name": "Voice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CapsCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CapsCategory", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CapsEventDictionary", + "namespace": "LibreMetaverse", + "name": "CapsEventDictionary", + "signature": "LibreMetaverse.CapsEventDictionary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.CapsEventDictionary.Client", + "kind": "field", + "name": "Client", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridClient", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsEventDictionary.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "CapsEventDictionary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsEventDictionary.RegisterEvent(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "kind": "method", + "name": "RegisterEvent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsEvent", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventHandler", + "type": "LibreMetaverse.Caps.EventQueueCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsEventDictionary.UnregisterEvent(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "kind": "method", + "name": "UnregisterEvent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsEvent", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventHandler", + "type": "LibreMetaverse.Caps.EventQueueCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CapsRateLimiter", + "namespace": "LibreMetaverse", + "name": "CapsRateLimiter", + "signature": "LibreMetaverse.CapsRateLimiter", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CapsRateLimiter.#ctor", + "kind": "constructor", + "name": "CapsRateLimiter", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsRateLimiter.#ctor(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.CapsCategory,LibreMetaverse.CapsRateLimiterOptions})", + "kind": "constructor", + "name": "CapsRateLimiter", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "overrides", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.CapsCategory, LibreMetaverse.CapsRateLimiterOptions\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsRateLimiter.AcquireAsync(System.Uri,System.Threading.CancellationToken)", + "kind": "method", + "name": "AcquireAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.ValueTask\u003CSystem.Threading.RateLimiting.RateLimitLease\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsRateLimiter.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CapsRateLimiter.RegisterCapUri(System.String,System.Uri)", + "kind": "method", + "name": "RegisterCapUri", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CapsRateLimiterOptions", + "namespace": "LibreMetaverse", + "name": "CapsRateLimiterOptions", + "signature": "LibreMetaverse.CapsRateLimiterOptions", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.CapsRateLimiterOptions.#ctor", + "kind": "constructor", + "name": "CapsRateLimiterOptions", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.QueueLimit", + "kind": "property", + "name": "QueueLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.ReplenishmentPeriod", + "kind": "property", + "name": "ReplenishmentPeriod", + "static": false, + "visibility": "public", + "type": "System.TimeSpan", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.TokenLimit", + "kind": "property", + "name": "TokenLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.TokensPerPeriod", + "kind": "property", + "name": "TokensPerPeriod", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChannelType", + "namespace": "LibreMetaverse", + "name": "ChannelType", + "signature": "LibreMetaverse.ChannelType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ChannelType.Asset", + "kind": "enum_value", + "name": "Asset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChannelType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChannelType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChannelType.Misc", + "kind": "enum_value", + "name": "Misc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChannelType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChannelType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChannelType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChannelType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChannelType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatAudibleLevel", + "namespace": "LibreMetaverse", + "name": "ChatAudibleLevel", + "signature": "LibreMetaverse.ChatAudibleLevel", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.SByte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ChatAudibleLevel.Barely", + "kind": "enum_value", + "name": "Barely", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatAudibleLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatAudibleLevel", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatAudibleLevel.Fully", + "kind": "enum_value", + "name": "Fully", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatAudibleLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatAudibleLevel", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatAudibleLevel.Not", + "kind": "enum_value", + "name": "Not", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatAudibleLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatAudibleLevel", + "value": "-1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatEventArgs", + "namespace": "LibreMetaverse", + "name": "ChatEventArgs", + "signature": "LibreMetaverse.ChatEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ChatEventArgs.#ctor(LibreMetaverse.Simulator,System.String,LibreMetaverse.ChatAudibleLevel,LibreMetaverse.ChatType,LibreMetaverse.ChatSourceType,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "ChatEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "audible", + "type": "LibreMetaverse.ChatAudibleLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ChatType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sourceType", + "type": "LibreMetaverse.ChatSourceType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fromName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sourceId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ChatEventArgs.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.AudibleLevel", + "kind": "property", + "name": "AudibleLevel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ChatAudibleLevel", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.FromName", + "kind": "property", + "name": "FromName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.SourceID", + "kind": "property", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.SourceType", + "kind": "property", + "name": "SourceType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ChatSourceType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatSessionMember", + "namespace": "LibreMetaverse", + "name": "ChatSessionMember", + "signature": "LibreMetaverse.ChatSessionMember", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.ChatSessionMember\u003E" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ChatSessionMember.AvatarKey", + "kind": "field", + "name": "AvatarKey", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatSessionMember.CanVoiceChat", + "kind": "field", + "name": "CanVoiceChat", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatSessionMember.IsModerator", + "kind": "field", + "name": "IsModerator", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatSessionMember.MuteText", + "kind": "field", + "name": "MuteText", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatSessionMember.MuteVoice", + "kind": "field", + "name": "MuteVoice", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ChatSessionMember.Equals(LibreMetaverse.ChatSessionMember)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.ChatSessionMember", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ChatSessionMember.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ChatSessionMember.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatSessionMemberAddedEventArgs", + "namespace": "LibreMetaverse", + "name": "ChatSessionMemberAddedEventArgs", + "signature": "LibreMetaverse.ChatSessionMemberAddedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ChatSessionMemberAddedEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "ChatSessionMemberAddedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatSessionMemberAddedEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatSessionMemberAddedEventArgs.SessionID", + "kind": "property", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatSessionMemberLeftEventArgs", + "namespace": "LibreMetaverse", + "name": "ChatSessionMemberLeftEventArgs", + "signature": "LibreMetaverse.ChatSessionMemberLeftEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ChatSessionMemberLeftEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "ChatSessionMemberLeftEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatSessionMemberLeftEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ChatSessionMemberLeftEventArgs.SessionID", + "kind": "property", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatSourceType", + "namespace": "LibreMetaverse", + "name": "ChatSourceType", + "signature": "LibreMetaverse.ChatSourceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ChatSourceType.Agent", + "kind": "enum_value", + "name": "Agent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatSourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatSourceType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatSourceType.Object", + "kind": "enum_value", + "name": "Object", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatSourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatSourceType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatSourceType.System", + "kind": "enum_value", + "name": "System", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatSourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatSourceType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ChatType", + "namespace": "LibreMetaverse", + "name": "ChatType", + "signature": "LibreMetaverse.ChatType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ChatType.Debug", + "kind": "enum_value", + "name": "Debug", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.Normal", + "kind": "enum_value", + "name": "Normal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.OwnerSay", + "kind": "enum_value", + "name": "OwnerSay", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.RegionSay", + "kind": "enum_value", + "name": "RegionSay", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "255" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.RegionSayTo", + "kind": "enum_value", + "name": "RegionSayTo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.Shout", + "kind": "enum_value", + "name": "Shout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.StartTyping", + "kind": "enum_value", + "name": "StartTyping", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.StopTyping", + "kind": "enum_value", + "name": "StopTyping", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ChatType.Whisper", + "kind": "enum_value", + "name": "Whisper", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ChatType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ChatType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ClassifiedAd", + "namespace": "LibreMetaverse", + "name": "ClassifiedAd", + "signature": "LibreMetaverse.ClassifiedAd", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.ClassifiedFlags", + "kind": "field", + "name": "ClassifiedFlags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.ExpirationDate", + "kind": "field", + "name": "ExpirationDate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.ParcelName", + "kind": "field", + "name": "ParcelName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.ParentEstate", + "kind": "field", + "name": "ParentEstate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClassifiedAd.SnapShotID", + "kind": "field", + "name": "SnapShotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ClassifiedInfoReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ClassifiedInfoReplyEventArgs", + "signature": "LibreMetaverse.ClassifiedInfoReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ClassifiedInfoReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.ClassifiedAd)", + "kind": "constructor", + "name": "ClassifiedInfoReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "classifiedID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Classified", + "type": "LibreMetaverse.ClassifiedAd", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ClassifiedInfoReplyEventArgs.Classified", + "kind": "property", + "name": "Classified", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ClassifiedAd", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ClassifiedInfoReplyEventArgs.ClassifiedID", + "kind": "property", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CoarseLocationUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "CoarseLocationUpdateEventArgs", + "signature": "LibreMetaverse.CoarseLocationUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CoarseLocationUpdateEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,LibreMetaverse.Vector3},System.Collections.Generic.ICollection{LibreMetaverse.UUID},System.Collections.Generic.ICollection{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "CoarseLocationUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "positions", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Vector3\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "newEntries", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "removedEntries", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.NewEntries", + "kind": "property", + "name": "NewEntries", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.Positions", + "kind": "property", + "name": "Positions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Vector3\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.RemovedEntries", + "kind": "property", + "name": "RemovedEntries", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CompressedFlags", + "namespace": "LibreMetaverse", + "name": "CompressedFlags", + "signature": "LibreMetaverse.CompressedFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasAngularVelocity", + "kind": "enum_value", + "name": "HasAngularVelocity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasNameValues", + "kind": "enum_value", + "name": "HasNameValues", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasParent", + "kind": "enum_value", + "name": "HasParent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasParticles", + "kind": "enum_value", + "name": "HasParticles", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasParticlesNew", + "kind": "enum_value", + "name": "HasParticlesNew", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasSound", + "kind": "enum_value", + "name": "HasSound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.HasText", + "kind": "enum_value", + "name": "HasText", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.MediaURL", + "kind": "enum_value", + "name": "MediaURL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.ScratchPad", + "kind": "enum_value", + "name": "ScratchPad", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.TextureAnimation", + "kind": "enum_value", + "name": "TextureAnimation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CompressedFlags.Tree", + "kind": "enum_value", + "name": "Tree", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.CompressedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.CompressedFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ConnectionSettings", + "namespace": "LibreMetaverse", + "name": "ConnectionSettings", + "signature": "LibreMetaverse.ConnectionSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ConnectionSettings.LoginServer", + "kind": "field", + "name": "LoginServer", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.ConnectionSettings.MfaEnabled", + "kind": "field", + "name": "MfaEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ConnectionSettings.#ctor", + "kind": "constructor", + "name": "ConnectionSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CoordinateFrame", + "namespace": "LibreMetaverse", + "name": "CoordinateFrame", + "signature": "LibreMetaverse.CoordinateFrame", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.CoordinateFrame.X_AXIS", + "kind": "field", + "name": "X_AXIS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CoordinateFrame.Y_AXIS", + "kind": "field", + "name": "Y_AXIS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.CoordinateFrame.Z_AXIS", + "kind": "field", + "name": "Z_AXIS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.#ctor(LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "CoordinateFrame", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.#ctor(LibreMetaverse.Vector3,LibreMetaverse.Matrix4)", + "kind": "constructor", + "name": "CoordinateFrame", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.#ctor(LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "kind": "constructor", + "name": "CoordinateFrame", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.#ctor(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "CoordinateFrame", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "direction", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.#ctor(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "CoordinateFrame", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "xAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upDirection", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookDirection", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "at", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "LookDirection", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "at", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upDirection", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(System.Double)", + "kind": "method", + "name": "LookDirection", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "heading", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.Pitch(System.Single)", + "kind": "method", + "name": "Pitch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.ResetAxes", + "kind": "method", + "name": "ResetAxes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.Roll(System.Single)", + "kind": "method", + "name": "Roll", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Rotate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "m", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Rotate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(System.Single,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Rotate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotationAxis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CoordinateFrame.Yaw(System.Single)", + "kind": "method", + "name": "Yaw", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoordinateFrame.Origin", + "kind": "property", + "name": "Origin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoordinateFrame.XAxis", + "kind": "property", + "name": "XAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoordinateFrame.YAxis", + "kind": "property", + "name": "YAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CoordinateFrame.ZAxis", + "kind": "property", + "name": "ZAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CurrentGroupsEventArgs", + "namespace": "LibreMetaverse", + "name": "CurrentGroupsEventArgs", + "signature": "LibreMetaverse.CurrentGroupsEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CurrentGroupsEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.Group})", + "kind": "constructor", + "name": "CurrentGroupsEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groups", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Group\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CurrentGroupsEventArgs.Groups", + "kind": "property", + "name": "Groups", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Group\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DeRezDestination", + "namespace": "LibreMetaverse", + "name": "DeRezDestination", + "signature": "LibreMetaverse.DeRezDestination", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.DeRezDestination.AgentInventoryCopy", + "kind": "enum_value", + "name": "AgentInventoryCopy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.AgentInventorySave", + "kind": "enum_value", + "name": "AgentInventorySave", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.AgentInventoryTake", + "kind": "enum_value", + "name": "AgentInventoryTake", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.Attachment", + "kind": "enum_value", + "name": "Attachment", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.AttachmentExists", + "kind": "enum_value", + "name": "AttachmentExists", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.AttachmentToInventory", + "kind": "enum_value", + "name": "AttachmentToInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.ForceToGodInventory", + "kind": "enum_value", + "name": "ForceToGodInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.ReturnToLastOwner", + "kind": "enum_value", + "name": "ReturnToLastOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.ReturnToOwner", + "kind": "enum_value", + "name": "ReturnToOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.TaskInventory", + "kind": "enum_value", + "name": "TaskInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DeRezDestination.TrashFolder", + "kind": "enum_value", + "name": "TrashFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DeRezDestination", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DeRezDestination", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DictionaryChangeCallback", + "namespace": "LibreMetaverse", + "name": "DictionaryChangeCallback", + "signature": "LibreMetaverse.DictionaryChangeCallback", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.DictionaryChangeCallback.Invoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.DictionaryEventAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "entry", + "type": "System.Collections.DictionaryEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.DictionaryChangeCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DictionaryChangeCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DictionaryChangeCallback.BeginInvoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.DictionaryEventAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "entry", + "type": "System.Collections.DictionaryEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DictionaryChangeCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DictionaryChangeCallback.Invoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.DictionaryEventAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "entry", + "type": "System.Collections.DictionaryEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DictionaryEventAction", + "namespace": "LibreMetaverse", + "name": "DictionaryEventAction", + "signature": "LibreMetaverse.DictionaryEventAction", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.DictionaryEventAction.Add", + "kind": "enum_value", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DictionaryEventAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DictionaryEventAction", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DictionaryEventAction.Change", + "kind": "enum_value", + "name": "Change", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DictionaryEventAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DictionaryEventAction", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DictionaryEventAction.Remove", + "kind": "enum_value", + "name": "Remove", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DictionaryEventAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DictionaryEventAction", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirClassifiedsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "DirClassifiedsReplyEventArgs", + "signature": "LibreMetaverse.DirClassifiedsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DirClassifiedsReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.DirectoryManager.Classified})", + "kind": "constructor", + "name": "DirClassifiedsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "classifieds", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.Classified\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirClassifiedsReplyEventArgs.Classifieds", + "kind": "property", + "name": "Classifieds", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.Classified\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirEventsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "DirEventsReplyEventArgs", + "signature": "LibreMetaverse.DirEventsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DirEventsReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.EventsSearchData})", + "kind": "constructor", + "name": "DirEventsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matchedEvents", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.EventsSearchData\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirEventsReplyEventArgs.MatchedEvents", + "kind": "property", + "name": "MatchedEvents", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.EventsSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirEventsReplyEventArgs.QueryID", + "kind": "property", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirGroupsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "DirGroupsReplyEventArgs", + "signature": "LibreMetaverse.DirGroupsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DirGroupsReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.GroupSearchData})", + "kind": "constructor", + "name": "DirGroupsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matchedGroups", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.GroupSearchData\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirGroupsReplyEventArgs.MatchedGroups", + "kind": "property", + "name": "MatchedGroups", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.GroupSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirGroupsReplyEventArgs.QueryID", + "kind": "property", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirLandReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "DirLandReplyEventArgs", + "signature": "LibreMetaverse.DirLandReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DirLandReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.DirectoryManager.DirectoryParcel})", + "kind": "constructor", + "name": "DirLandReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dirParcels", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirLandReplyEventArgs.DirParcels", + "kind": "property", + "name": "DirParcels", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirPeopleReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "DirPeopleReplyEventArgs", + "signature": "LibreMetaverse.DirPeopleReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DirPeopleReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.AgentSearchData})", + "kind": "constructor", + "name": "DirPeopleReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matchedPeople", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.AgentSearchData\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirPeopleReplyEventArgs.MatchedPeople", + "kind": "property", + "name": "MatchedPeople", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.AgentSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirPeopleReplyEventArgs.QueryID", + "kind": "property", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirPlacesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "DirPlacesReplyEventArgs", + "signature": "LibreMetaverse.DirPlacesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DirPlacesReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.DirectoryParcel})", + "kind": "constructor", + "name": "DirPlacesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matchedParcels", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirPlacesReplyEventArgs.MatchedParcels", + "kind": "property", + "name": "MatchedParcels", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DirPlacesReplyEventArgs.QueryID", + "kind": "property", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager", + "namespace": "LibreMetaverse", + "name": "DirectoryManager", + "signature": "LibreMetaverse.DirectoryManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.DirectoryManager.DirClassifiedsReply", + "kind": "event", + "name": "DirClassifiedsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DirClassifiedsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.DirEventsReply", + "kind": "event", + "name": "DirEventsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DirEventsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.DirGroupsReply", + "kind": "event", + "name": "DirGroupsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DirGroupsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.DirLandReply", + "kind": "event", + "name": "DirLandReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DirLandReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.DirPeopleReply", + "kind": "event", + "name": "DirPeopleReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DirPeopleReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.DirPlacesReply", + "kind": "event", + "name": "DirPlacesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DirPlacesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.EventInfoReply", + "kind": "event", + "name": "EventInfoReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EventInfoReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.DirectoryManager.PlacesReply", + "kind": "event", + "name": "PlacesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PlacesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "DirectoryManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.EventInfoRequest(System.UInt32)", + "kind": "method", + "name": "EventInfoRequest", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.GetEventInfoAsync(System.UInt32,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetEventInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.DirectoryManager.EventInfo\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CGetEventInfoAsync\u003Ed__103" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchClassifiedsAsync(System.String,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.DirectoryManager.ClassifiedQueryFlags,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchClassifiedsAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.Classified\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "query", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "Any" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "flags", + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "value": "All" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchClassifiedsAsync\u003Ed__99" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchDirPlacesAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchDirPlacesAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "query", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "DwellSort, IncludePG, IncludeMature, IncludeAdult" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "category", + "type": "LibreMetaverse.ParcelCategory", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.ParcelCategory", + "value": "Any" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchDirPlacesAsync\u003Ed__98" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchEventsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,LibreMetaverse.DirectoryManager.EventCategories,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchEventsAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.EventsSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "query", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "DateEvents, IncludePG, IncludeMature, IncludeAdult" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "eventDay", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String", + "value": "u" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "category", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "All" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchEventsAsync\u003Ed__100" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchGroupsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchGroupsAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.GroupSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "query", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "Groups" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchGroupsAsync\u003Ed__97" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchLandAsync(LibreMetaverse.DirectoryManager.SearchTypeFlags,LibreMetaverse.DirectoryManager.DirFindFlags,System.Int32,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchLandAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "typeFlags", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "findFlags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "SortAsc, PerMeterSort, IncludePG, IncludeMature, IncludeAdult" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "priceLimit", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "areaLimit", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchLandAsync\u003Ed__101" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchPeopleAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchPeopleAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.AgentSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchPeopleAsync\u003Ed__96" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.SearchPlacesAsync(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "SearchPlacesAsync", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.PlacesSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "findFlags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.ParcelCategory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "query", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulatorName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String", + "value": "" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.UUID" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.EnumeratorCancellationAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DirectoryManager.\u003CSearchPlacesAsync\u003Ed__102" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartClassifiedSearch(System.String)", + "kind": "method", + "name": "StartClassifiedSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartClassifiedSearch(System.String,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.DirectoryManager.ClassifiedQueryFlags)", + "kind": "method", + "name": "StartClassifiedSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryFlags", + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartDirPlacesSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Int32)", + "kind": "method", + "name": "StartDirPlacesSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryFlags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.ParcelCategory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartDirPlacesSearch(System.String,System.Int32)", + "kind": "method", + "name": "StartDirPlacesSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,System.UInt32,LibreMetaverse.DirectoryManager.EventCategories)", + "kind": "method", + "name": "StartEventsSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryFlags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventDay", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,System.UInt32)", + "kind": "method", + "name": "StartEventsSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartGroupSearch(System.String,System.Int32)", + "kind": "method", + "name": "StartGroupSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartGroupSearch(System.String,System.Int32,LibreMetaverse.DirectoryManager.DirFindFlags)", + "kind": "method", + "name": "StartGroupSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "StartLandSearch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "findFlags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "typeFlags", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priceLimit", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "areaLimit", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags)", + "kind": "method", + "name": "StartLandSearch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "typeFlags", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "StartLandSearch", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "typeFlags", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priceLimit", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "areaLimit", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartPeopleSearch(System.String,System.Int32)", + "kind": "method", + "name": "StartPeopleSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryStart", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch", + "kind": "method", + "name": "StartPlacesSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "StartPlacesSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "findFlags", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "searchCategory", + "type": "LibreMetaverse.ParcelCategory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulatorName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch(LibreMetaverse.UUID)", + "kind": "method", + "name": "StartPlacesSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch(System.String)", + "kind": "method", + "name": "StartPlacesSearch", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "searchText", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.AgentSearchData", + "namespace": "LibreMetaverse", + "name": "AgentSearchData", + "signature": "LibreMetaverse.DirectoryManager.AgentSearchData", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.Online", + "kind": "field", + "name": "Online", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.AgentSearchData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.Classified", + "namespace": "LibreMetaverse", + "name": "Classified", + "signature": "LibreMetaverse.DirectoryManager.Classified", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.Classified.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.Classified.ExpirationDate", + "kind": "field", + "name": "ExpirationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.Classified.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.Classified.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.Classified.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.Classified.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.Classified.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedCategories", + "namespace": "LibreMetaverse", + "name": "ClassifiedCategories", + "signature": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.Any", + "kind": "enum_value", + "name": "Any", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.Employment", + "kind": "enum_value", + "name": "Employment", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.LandRental", + "kind": "enum_value", + "name": "LandRental", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.NewProducts", + "kind": "enum_value", + "name": "NewProducts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.Personal", + "kind": "enum_value", + "name": "Personal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.PropertyRental", + "kind": "enum_value", + "name": "PropertyRental", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.Service", + "kind": "enum_value", + "name": "Service", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.Shopping", + "kind": "enum_value", + "name": "Shopping", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.SpecialAttraction", + "kind": "enum_value", + "name": "SpecialAttraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedCategories.Wanted", + "kind": "enum_value", + "name": "Wanted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedCategories", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedFlags", + "namespace": "LibreMetaverse", + "name": "ClassifiedFlags", + "signature": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedFlags.AutoRenew", + "kind": "enum_value", + "name": "AutoRenew", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "value": "32" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedFlags.Enabled", + "kind": "enum_value", + "name": "Enabled", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedFlags.Mature", + "kind": "enum_value", + "name": "Mature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedFlags.UpdateTime", + "kind": "enum_value", + "name": "UpdateTime", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedFlags", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "namespace": "LibreMetaverse", + "name": "ClassifiedQueryFlags", + "signature": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags.Adult", + "kind": "enum_value", + "name": "Adult", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags.Mature", + "kind": "enum_value", + "name": "Mature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags.PG", + "kind": "enum_value", + "name": "PG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.DirFindFlags", + "namespace": "LibreMetaverse", + "name": "DirFindFlags", + "signature": "LibreMetaverse.DirectoryManager.DirFindFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.AdultOnly", + "kind": "enum_value", + "name": "AdultOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "134217728" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.AgentOwned", + "kind": "enum_value", + "name": "AgentOwned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.AreaSort", + "kind": "enum_value", + "name": "AreaSort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "262144" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.DateEvents", + "kind": "enum_value", + "name": "DateEvents", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.DwellSort", + "kind": "enum_value", + "name": "DwellSort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.Events", + "kind": "enum_value", + "name": "Events", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.FilterMature", + "kind": "enum_value", + "name": "FilterMature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "4194304" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.ForSale", + "kind": "enum_value", + "name": "ForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.GroupOwned", + "kind": "enum_value", + "name": "GroupOwned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.Groups", + "kind": "enum_value", + "name": "Groups", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.IncludeAdult", + "kind": "enum_value", + "name": "IncludeAdult", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "67108864" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.IncludeMature", + "kind": "enum_value", + "name": "IncludeMature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "33554432" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.IncludePG", + "kind": "enum_value", + "name": "IncludePG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "16777216" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.LimitByArea", + "kind": "enum_value", + "name": "LimitByArea", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "2097152" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.LimitByPrice", + "kind": "enum_value", + "name": "LimitByPrice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "1048576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.MatureSimsOnly", + "kind": "enum_value", + "name": "MatureSimsOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "16384" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.NameSort", + "kind": "enum_value", + "name": "NameSort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "524288" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.Online", + "kind": "enum_value", + "name": "Online", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.PGOnly", + "kind": "enum_value", + "name": "PGOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "8388608" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.People", + "kind": "enum_value", + "name": "People", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.PerMeterSort", + "kind": "enum_value", + "name": "PerMeterSort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "131072" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.PgEventsOnly", + "kind": "enum_value", + "name": "PgEventsOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "8192" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.PgSimsOnly", + "kind": "enum_value", + "name": "PgSimsOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.PicturesOnly", + "kind": "enum_value", + "name": "PicturesOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.PricesSort", + "kind": "enum_value", + "name": "PricesSort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirFindFlags.SortAsc", + "kind": "enum_value", + "name": "SortAsc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.DirFindFlags", + "value": "32768" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.DirectoryParcel", + "namespace": "LibreMetaverse", + "name": "DirectoryParcel", + "signature": "LibreMetaverse.DirectoryManager.DirectoryParcel", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.Auction", + "kind": "field", + "name": "Auction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.ForSale", + "kind": "field", + "name": "ForSale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.DirectoryParcel.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.EventCategories", + "namespace": "LibreMetaverse", + "name": "EventCategories", + "signature": "LibreMetaverse.DirectoryManager.EventCategories", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Arts", + "kind": "enum_value", + "name": "Arts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Charity", + "kind": "enum_value", + "name": "Charity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Commercial", + "kind": "enum_value", + "name": "Commercial", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Discussion", + "kind": "enum_value", + "name": "Discussion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Education", + "kind": "enum_value", + "name": "Education", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Games", + "kind": "enum_value", + "name": "Games", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.LiveMusic", + "kind": "enum_value", + "name": "LiveMusic", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Miscellaneous", + "kind": "enum_value", + "name": "Miscellaneous", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Nightlife", + "kind": "enum_value", + "name": "Nightlife", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Pageants", + "kind": "enum_value", + "name": "Pageants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventCategories.Sports", + "kind": "enum_value", + "name": "Sports", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.EventFlags", + "namespace": "LibreMetaverse", + "name": "EventFlags", + "signature": "LibreMetaverse.DirectoryManager.EventFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventFlags.Adult", + "kind": "enum_value", + "name": "Adult", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventFlags.Mature", + "kind": "enum_value", + "name": "Mature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventFlags.PG", + "kind": "enum_value", + "name": "PG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.EventInfo", + "namespace": "LibreMetaverse", + "name": "EventInfo", + "signature": "LibreMetaverse.DirectoryManager.EventInfo", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Cover", + "kind": "field", + "name": "Cover", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Creator", + "kind": "field", + "name": "Creator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Date", + "kind": "field", + "name": "Date", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.DateUTC", + "kind": "field", + "name": "DateUTC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.GlobalPos", + "kind": "field", + "name": "GlobalPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.EventInfo.ToSLurl", + "kind": "method", + "name": "ToSLurl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.EventInfo.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.EventsSearchData", + "namespace": "LibreMetaverse", + "name": "EventsSearchData", + "signature": "LibreMetaverse.DirectoryManager.EventsSearchData", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Date", + "kind": "field", + "name": "Date", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Owner", + "kind": "field", + "name": "Owner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.EventsSearchData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.GroupSearchData", + "namespace": "LibreMetaverse", + "name": "GroupSearchData", + "signature": "LibreMetaverse.DirectoryManager.GroupSearchData", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.GroupSearchData.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.GroupSearchData.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.GroupSearchData.Members", + "kind": "field", + "name": "Members", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.GroupSearchData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.PlacesFlags", + "namespace": "LibreMetaverse", + "name": "PlacesFlags", + "signature": "LibreMetaverse.DirectoryManager.PlacesFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesFlags.ForSale", + "kind": "enum_value", + "name": "ForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.PlacesFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.PlacesFlags", + "value": "128" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesFlags.NotForSale", + "kind": "enum_value", + "name": "NotForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.PlacesFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.PlacesFlags", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.PlacesSearchData", + "namespace": "LibreMetaverse", + "name": "PlacesSearchData", + "signature": "LibreMetaverse.DirectoryManager.PlacesSearchData", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.PlacesFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.GlobalZ", + "kind": "field", + "name": "GlobalZ", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.SKU", + "kind": "field", + "name": "SKU", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.PlacesSearchData.ToSLurl", + "kind": "method", + "name": "ToSLurl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DirectoryManager.PlacesSearchData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DirectoryManager.SearchTypeFlags", + "namespace": "LibreMetaverse", + "name": "SearchTypeFlags", + "signature": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.DirectoryManager.SearchTypeFlags.Any", + "kind": "enum_value", + "name": "Any", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.SearchTypeFlags.Auction", + "kind": "enum_value", + "name": "Auction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.SearchTypeFlags.Estate", + "kind": "enum_value", + "name": "Estate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DirectoryManager.SearchTypeFlags.Mainland", + "kind": "enum_value", + "name": "Mainland", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.DirectoryManager.SearchTypeFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DisconnectedEventArgs", + "namespace": "LibreMetaverse", + "name": "DisconnectedEventArgs", + "signature": "LibreMetaverse.DisconnectedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DisconnectedEventArgs.#ctor(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "kind": "constructor", + "name": "DisconnectedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reason", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DisconnectedEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DisconnectedEventArgs.Reason", + "kind": "property", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DisplayNameUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "DisplayNameUpdateEventArgs", + "signature": "LibreMetaverse.DisplayNameUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DisplayNameUpdateEventArgs.#ctor(System.String,LibreMetaverse.AgentDisplayName)", + "kind": "constructor", + "name": "DisplayNameUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "oldDisplayName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "displayName", + "type": "LibreMetaverse.AgentDisplayName", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DisplayNameUpdateEventArgs.DisplayName", + "kind": "property", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentDisplayName", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DisplayNameUpdateEventArgs.OldDisplayName", + "kind": "property", + "name": "OldDisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DisposalHelper", + "namespace": "LibreMetaverse", + "name": "DisposalHelper", + "signature": "LibreMetaverse.DisposalHelper", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeAction", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.Action", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "actionName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeCancelAndDispose(System.Threading.CancellationTokenSource,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeCancelAndDispose", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cts", + "type": "System.Threading.CancellationTokenSource", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeDispose", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "resource", + "type": "System.IDisposable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "resourceName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeDisposeAll", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "resources", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.IDisposable\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeDisposeClear", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "T", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "collection", + "type": "System.Collections.Generic.ICollection\u003CT\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeJoinThread", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "thread", + "type": "System.Threading.Thread", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeWaitTask", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "task", + "type": "System.Threading.Tasks.Task", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeWaitTaskAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "task", + "type": "System.Threading.Tasks.Task", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DisposalHelper.\u003CSafeWaitTaskAsync\u003Ed__6" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.UsingAsync\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,System.Threading.Tasks.Task{\u0060\u00601}})", + "kind": "method", + "name": "UsingAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CTResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TDisposable", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "TResult", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "factory", + "type": "System.Func\u003CTDisposable\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Func\u003CTDisposable, System.Threading.Tasks.Task\u003CTResult\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.DisposalHelper.\u003CUsingAsync\u003Ed__8\u003CTDisposable, TResult\u003E" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.Using\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,\u0060\u00601})", + "kind": "method", + "name": "Using", + "static": true, + "visibility": "public", + "type": "TResult", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TDisposable", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "TResult", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "factory", + "type": "System.Func\u003CTDisposable\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Func\u003CTDisposable, TResult\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DisposalHelper.DisposalGuard", + "namespace": "LibreMetaverse", + "name": "DisposalGuard", + "signature": "LibreMetaverse.DisposalHelper.DisposalGuard", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DisposalHelper.DisposalGuard.#ctor(System.Action)", + "kind": "constructor", + "name": "DisposalGuard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "onDispose", + "type": "System.Action", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.DisposalHelper.DisposalGuard.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DrivenParamInfo", + "namespace": "LibreMetaverse", + "name": "DrivenParamInfo", + "signature": "LibreMetaverse.DrivenParamInfo", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.DrivenParamInfo.HasRange", + "kind": "field", + "name": "HasRange", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DrivenParamInfo.Max1", + "kind": "field", + "name": "Max1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DrivenParamInfo.Max2", + "kind": "field", + "name": "Max2", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DrivenParamInfo.Min1", + "kind": "field", + "name": "Min1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DrivenParamInfo.Min2", + "kind": "field", + "name": "Min2", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.DrivenParamInfo.ParamID", + "kind": "field", + "name": "ParamID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "kind": "constructor", + "name": "DrivenParamInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "paramID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hasRange", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EffectType", + "namespace": "LibreMetaverse", + "name": "EffectType", + "signature": "LibreMetaverse.EffectType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.EffectType.AnimalControls", + "kind": "enum_value", + "name": "AnimalControls", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.AnimationObject", + "kind": "enum_value", + "name": "AnimationObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Beam", + "kind": "enum_value", + "name": "Beam", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Cloth", + "kind": "enum_value", + "name": "Cloth", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Connector", + "kind": "enum_value", + "name": "Connector", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Edit", + "kind": "enum_value", + "name": "Edit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "13" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.FlexibleObject", + "kind": "enum_value", + "name": "FlexibleObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Glow", + "kind": "enum_value", + "name": "Glow", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Icon", + "kind": "enum_value", + "name": "Icon", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.LookAt", + "kind": "enum_value", + "name": "LookAt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "14" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Point", + "kind": "enum_value", + "name": "Point", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.PointAt", + "kind": "enum_value", + "name": "PointAt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "15" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Sphere", + "kind": "enum_value", + "name": "Sphere", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "11" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Spiral", + "kind": "enum_value", + "name": "Spiral", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "12" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Text", + "kind": "enum_value", + "name": "Text", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EffectType.Trail", + "kind": "enum_value", + "name": "Trail", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EffectType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EnvironmentManager", + "namespace": "LibreMetaverse", + "name": "EnvironmentManager", + "signature": "LibreMetaverse.EnvironmentManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.EnvironmentManager.LegacyEnvironmentUpdated", + "kind": "event", + "name": "LegacyEnvironmentUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.LegacyEnvironmentEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EnvironmentManager.ParcelEnvironmentUpdated", + "kind": "event", + "name": "ParcelEnvironmentUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelEnvironmentEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EnvironmentManager.RegionEnvironmentUpdated", + "kind": "event", + "name": "RegionEnvironmentUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RegionEnvironmentEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "EnvironmentManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.GetLegacyEnvironmentAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetLegacyEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.LegacyEnvironmentMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CGetLegacyEnvironmentAsync\u003Ed__37" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.GetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetParcelEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CGetParcelEnvironmentAsync\u003Ed__30" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.GetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetRegionEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CGetRegionEnvironmentAsync\u003Ed__29" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.ResetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "ResetParcelEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CResetParcelEnvironmentAsync\u003Ed__33" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.ResetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "ResetRegionEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CResetRegionEnvironmentAsync\u003Ed__34" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.SetLegacyEnvironmentAsync(LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetLegacyEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settings", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CSetLegacyEnvironmentAsync\u003Ed__38" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.SetParcelEnvironmentAsync(System.Int32,LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetParcelEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "environment", + "type": "LibreMetaverse.Messages.Linden.EnvironmentData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CSetParcelEnvironmentAsync\u003Ed__32" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EnvironmentManager.SetRegionEnvironmentAsync(LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetRegionEnvironmentAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "environment", + "type": "LibreMetaverse.Messages.Linden.EnvironmentData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EnvironmentManager.\u003CSetRegionEnvironmentAsync\u003Ed__31" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.EnvironmentManager.LegacyEnvironment", + "kind": "property", + "name": "LegacyEnvironment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.EnvironmentManager.RegionEnvironment", + "kind": "property", + "name": "RegionEnvironment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EnvironmentTrack", + "namespace": "LibreMetaverse", + "name": "EnvironmentTrack", + "signature": "LibreMetaverse.EnvironmentTrack", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.EnvironmentTrack.Ground", + "kind": "enum_value", + "name": "Ground", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentTrack", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EnvironmentTrack", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EnvironmentTrack.High", + "kind": "enum_value", + "name": "High", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentTrack", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EnvironmentTrack", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EnvironmentTrack.Low", + "kind": "enum_value", + "name": "Low", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentTrack", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EnvironmentTrack", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EnvironmentTrack.Middle", + "kind": "enum_value", + "name": "Middle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentTrack", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EnvironmentTrack", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EnvironmentTrack.Water", + "kind": "enum_value", + "name": "Water", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentTrack", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EnvironmentTrack", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateAssetType", + "namespace": "LibreMetaverse", + "name": "EstateAssetType", + "signature": "LibreMetaverse.EstateAssetType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateAssetType.Covenant", + "kind": "enum_value", + "name": "Covenant", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateAssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateAssetType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateAssetType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateAssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateAssetType", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateBansReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateBansReplyEventArgs", + "signature": "LibreMetaverse.EstateBansReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateBansReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "EstateBansReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "banned", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateBansReplyEventArgs.Banned", + "kind": "property", + "name": "Banned", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateBansReplyEventArgs.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateBansReplyEventArgs.EstateID", + "kind": "property", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateCovenantReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateCovenantReplyEventArgs", + "signature": "LibreMetaverse.EstateCovenantReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateCovenantReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int64,System.String,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "EstateCovenantReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "covenantID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timestamp", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "estateName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "estateOwnerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateCovenantReplyEventArgs.CovenantID", + "kind": "property", + "name": "CovenantID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateCovenantReplyEventArgs.EstateName", + "kind": "property", + "name": "EstateName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateCovenantReplyEventArgs.EstateOwnerID", + "kind": "property", + "name": "EstateOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateCovenantReplyEventArgs.Timestamp", + "kind": "property", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateExperienceReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateExperienceReplyEventArgs", + "signature": "LibreMetaverse.EstateExperienceReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateExperienceReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "EstateExperienceReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "blocked", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "trusted", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "allowed", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateExperienceReplyEventArgs.Allowed", + "kind": "property", + "name": "Allowed", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateExperienceReplyEventArgs.Blocked", + "kind": "property", + "name": "Blocked", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateExperienceReplyEventArgs.Trusted", + "kind": "property", + "name": "Trusted", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateGroupsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateGroupsReplyEventArgs", + "signature": "LibreMetaverse.EstateGroupsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateGroupsReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "EstateGroupsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowedGroups", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateGroupsReplyEventArgs.AllowedGroups", + "kind": "property", + "name": "AllowedGroups", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateGroupsReplyEventArgs.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateGroupsReplyEventArgs.EstateID", + "kind": "property", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateManagersReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateManagersReplyEventArgs", + "signature": "LibreMetaverse.EstateManagersReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateManagersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "EstateManagersReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "managers", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateManagersReplyEventArgs.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateManagersReplyEventArgs.EstateID", + "kind": "property", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateManagersReplyEventArgs.Managers", + "kind": "property", + "name": "Managers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTask", + "namespace": "LibreMetaverse", + "name": "EstateTask", + "signature": "LibreMetaverse.EstateTask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTask.MonoScore", + "kind": "field", + "name": "MonoScore", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTask.OwnerName", + "kind": "field", + "name": "OwnerName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTask.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTask.Score", + "kind": "field", + "name": "Score", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTask.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTask.TaskLocalID", + "kind": "field", + "name": "TaskLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTask.TaskName", + "kind": "field", + "name": "TaskName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTask.#ctor", + "kind": "constructor", + "name": "EstateTask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools", + "namespace": "LibreMetaverse", + "name": "EstateTools", + "signature": "LibreMetaverse.EstateTools", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateBansReply", + "kind": "event", + "name": "EstateBansReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateBansReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateCovenantReply", + "kind": "event", + "name": "EstateCovenantReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateCovenantReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateExperienceReply", + "kind": "event", + "name": "EstateExperienceReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateExperienceReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateGroupsReply", + "kind": "event", + "name": "EstateGroupsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateGroupsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateManagersReply", + "kind": "event", + "name": "EstateManagersReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateManagersReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateUpdateInfoReply", + "kind": "event", + "name": "EstateUpdateInfoReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateUpdateInfoReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.EstateUsersReply", + "kind": "event", + "name": "EstateUsersReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EstateUsersReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.TopCollidersReply", + "kind": "event", + "name": "TopCollidersReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.TopCollidersReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.EstateTools.TopScriptsReply", + "kind": "event", + "name": "TopScriptsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.TopScriptsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureLimits", + "kind": "field", + "name": "GroundTextureLimits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.GroundTextureHeightSettings", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextures", + "kind": "field", + "name": "GroundTextures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.GroundTextureSettings", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "EstateTools", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.AddAllowedGroup(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "AddAllowedGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.AddAllowedUser(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "AddAllowedUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.AddEstateManager(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "AddEstateManager", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.BanUser(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "BanUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.CancelRestart", + "kind": "method", + "name": "CancelRestart", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.EstateMessage(System.String)", + "kind": "method", + "name": "EstateMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.Collections.Generic.List{System.String})", + "kind": "method", + "name": "EstateOwnerMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "method", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "listParams", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.String)", + "kind": "method", + "name": "EstateOwnerMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "method", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "param", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.GetRegionRestartScheduleAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetRegionRestartScheduleAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.RegionRestartSchedule\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EstateTools.\u003CGetRegionRestartScheduleAsync\u003Ed__118" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.KickUser(LibreMetaverse.UUID)", + "kind": "method", + "name": "KickUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.LandStatRequest(System.Int32,LibreMetaverse.EstateTools.LandStatReportType,System.UInt32,System.String)", + "kind": "method", + "name": "LandStatRequest", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelLocalID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reportType", + "type": "LibreMetaverse.EstateTools.LandStatReportType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "requestFlags", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "filter", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RemoveAllowedGroup(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "RemoveAllowedGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RemoveAllowedUser(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "RemoveAllowedUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RemoveEstateManager(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "RemoveEstateManager", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RequestCovenant", + "kind": "method", + "name": "RequestCovenant", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RequestCovenantNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestCovenantNotecardAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "covenantId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RequestCovenantNotecardAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestCovenantNotecardAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "covenantId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RequestInfo", + "kind": "method", + "name": "RequestInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RequestTopColliders", + "kind": "method", + "name": "RequestTopColliders", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RequestTopScripts", + "kind": "method", + "name": "RequestTopScripts", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RestartRegion", + "kind": "method", + "name": "RestartRegion", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.RestartRegion(System.Int32)", + "kind": "method", + "name": "RestartRegion", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "delay", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoAsync(System.String,System.Single,LibreMetaverse.RegionFlags,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendEstateChangeInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sunHour", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.RegionFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EstateTools.\u003CSendEstateChangeInfoAsync\u003Ed__103" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoDataserver(System.String,System.Single,LibreMetaverse.RegionFlags)", + "kind": "method", + "name": "SendEstateChangeInfoDataserver", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sunHour", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.RegionFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SendSimConsoleCommandAsync(System.String,System.TimeSpan,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendSimConsoleCommandAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "command", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "responseTimeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": true, + "default": { + "type": "System.TimeSpan" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EstateTools.\u003CSendSimConsoleCommandAsync\u003Ed__113" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetRegionDebug(System.Boolean,System.Boolean,System.Boolean)", + "kind": "method", + "name": "SetRegionDebug", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "disableScripts", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "disableCollisions", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "disablePhysics", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "kind": "method", + "name": "SetRegionInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "blockTerraform", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "blockFly", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "blockFlyOver", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowDamage", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowLandResell", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "restrictPushing", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowParcelJoinDivide", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentLimit", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectBonus", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "blockParcelSearch", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "maturity", + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EstateTools.\u003CSetRegionInfoAsync\u003Ed__86" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "kind": "method", + "name": "SetRegionInfoUdp", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "blockTerraform", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "blockFly", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowDamage", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowLandResell", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "restrictPushing", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowParcelJoinDivide", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentLimit", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectBonus", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "maturity", + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetRegionRestartScheduleAsync(LibreMetaverse.RegionRestartSchedule,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetRegionRestartScheduleAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "schedule", + "type": "LibreMetaverse.RegionRestartSchedule", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EstateTools.\u003CSetRegionRestartScheduleAsync\u003Ed__119" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrain(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "SetRegionTerrain", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "low", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "midLow", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "midHigh", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "high", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "SetRegionTerrainHeights", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lowSW", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "highSW", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lowNW", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "highNW", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lowSE", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "highSE", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lowNE", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "highNE", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "kind": "method", + "name": "SetTerrainVariables", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "WaterHeight", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "TerrainRaiseLimit", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "TerrainLowerLimit", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "UseEstateSun", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "FixedSun", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SunPosition", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SimWideReturn(LibreMetaverse.UUID,LibreMetaverse.EstateTools.EstateReturnFlags,System.Boolean)", + "kind": "method", + "name": "SimWideReturn", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "Target", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flag", + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "EstateWide", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.SimulatorMessage(System.String)", + "kind": "method", + "name": "SimulatorMessage", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.TeleportHomeAllUsers", + "kind": "method", + "name": "TeleportHomeAllUsers", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.TeleportHomeUser(LibreMetaverse.UUID)", + "kind": "method", + "name": "TeleportHomeUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pest", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.UnbanUser(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "UnbanUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allEstates", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EstateTools.UploadTerrain(System.Byte[],System.String)", + "kind": "method", + "name": "UploadTerrain", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.EstateAccessDelta", + "namespace": "LibreMetaverse", + "name": "EstateAccessDelta", + "signature": "LibreMetaverse.EstateTools.EstateAccessDelta", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.AddAllowedAllEstates", + "kind": "enum_value", + "name": "AddAllowedAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.AddGroupAllowedAllEstates", + "kind": "enum_value", + "name": "AddGroupAllowedAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.AddGroupAsAllowed", + "kind": "enum_value", + "name": "AddGroupAsAllowed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.AddManager", + "kind": "enum_value", + "name": "AddManager", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.AddManagerAllEstates", + "kind": "enum_value", + "name": "AddManagerAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "257" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.AddUserAsAllowed", + "kind": "enum_value", + "name": "AddUserAsAllowed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.BanUser", + "kind": "enum_value", + "name": "BanUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.BanUserAllEstates", + "kind": "enum_value", + "name": "BanUserAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.RemoveGroupAllowedAllEstates", + "kind": "enum_value", + "name": "RemoveGroupAllowedAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.RemoveGroupAsAllowed", + "kind": "enum_value", + "name": "RemoveGroupAsAllowed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.RemoveManager", + "kind": "enum_value", + "name": "RemoveManager", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.RemoveManagerAllEstates", + "kind": "enum_value", + "name": "RemoveManagerAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "513" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.RemoveUserAllowedAllEstates", + "kind": "enum_value", + "name": "RemoveUserAllowedAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.RemoveUserAsAllowed", + "kind": "enum_value", + "name": "RemoveUserAsAllowed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.UnbanUser", + "kind": "enum_value", + "name": "UnbanUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessDelta.UnbanUserAllEstates", + "kind": "enum_value", + "name": "UnbanUserAllEstates", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessDelta", + "value": "130" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "namespace": "LibreMetaverse", + "name": "EstateAccessReplyDelta", + "signature": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessReplyDelta.AllowedGroups", + "kind": "enum_value", + "name": "AllowedGroups", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessReplyDelta.AllowedUsers", + "kind": "enum_value", + "name": "AllowedUsers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessReplyDelta.EstateBans", + "kind": "enum_value", + "name": "EstateBans", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateAccessReplyDelta.EstateManagers", + "kind": "enum_value", + "name": "EstateManagers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.EstateReturnFlags", + "namespace": "LibreMetaverse", + "name": "EstateReturnFlags", + "signature": "LibreMetaverse.EstateTools.EstateReturnFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateReturnFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateReturnFlags.ReturnOnOthersLand", + "kind": "enum_value", + "name": "ReturnOnOthersLand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateReturnFlags.ReturnScripted", + "kind": "enum_value", + "name": "ReturnScripted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.EstateReturnFlags.ReturnScriptedAndOnOthers", + "kind": "enum_value", + "name": "ReturnScriptedAndOnOthers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.EstateReturnFlags", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.GroundTextureHeight", + "namespace": "LibreMetaverse", + "name": "GroundTextureHeight", + "signature": "LibreMetaverse.EstateTools.GroundTextureHeight", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeight.High", + "kind": "field", + "name": "High", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeight.Low", + "kind": "field", + "name": "Low", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.GroundTextureHeightSettings", + "namespace": "LibreMetaverse", + "name": "GroundTextureHeightSettings", + "signature": "LibreMetaverse.EstateTools.GroundTextureHeightSettings", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeightSettings.NE", + "kind": "field", + "name": "NE", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.GroundTextureHeight", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeightSettings.NW", + "kind": "field", + "name": "NW", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.GroundTextureHeight", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeightSettings.SE", + "kind": "field", + "name": "SE", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.GroundTextureHeight", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeightSettings.SW", + "kind": "field", + "name": "SW", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.GroundTextureHeight", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.GroundTextureSettings", + "namespace": "LibreMetaverse", + "name": "GroundTextureSettings", + "signature": "LibreMetaverse.EstateTools.GroundTextureSettings", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureSettings.High", + "kind": "field", + "name": "High", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureSettings.Low", + "kind": "field", + "name": "Low", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureSettings.MidHigh", + "kind": "field", + "name": "MidHigh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.GroundTextureSettings.MidLow", + "kind": "field", + "name": "MidLow", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.LandStatReportType", + "namespace": "LibreMetaverse", + "name": "LandStatReportType", + "signature": "LibreMetaverse.EstateTools.LandStatReportType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.LandStatReportType.TopColliders", + "kind": "enum_value", + "name": "TopColliders", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.LandStatReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.LandStatReportType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.LandStatReportType.TopScripts", + "kind": "enum_value", + "name": "TopScripts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.LandStatReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.LandStatReportType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateTools.RegionMaturity", + "namespace": "LibreMetaverse", + "name": "RegionMaturity", + "signature": "LibreMetaverse.EstateTools.RegionMaturity", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EstateTools.RegionMaturity.Adult", + "kind": "enum_value", + "name": "Adult", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.RegionMaturity.Mature", + "kind": "enum_value", + "name": "Mature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.EstateTools.RegionMaturity.PG", + "kind": "enum_value", + "name": "PG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.EstateTools.RegionMaturity", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateUpdateInfoReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateUpdateInfoReplyEventArgs", + "signature": "LibreMetaverse.EstateUpdateInfoReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateUpdateInfoReplyEventArgs.#ctor(System.String,LibreMetaverse.UUID,System.UInt32,LibreMetaverse.RegionFlags,System.Int32)", + "kind": "constructor", + "name": "EstateUpdateInfoReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "estateOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "estateID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.RegionFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sunHour", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.EstateID", + "kind": "property", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.EstateName", + "kind": "property", + "name": "EstateName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.EstateOwner", + "kind": "property", + "name": "EstateOwner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.Flags", + "kind": "property", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.SunHour", + "kind": "property", + "name": "SunHour", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EstateUsersReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EstateUsersReplyEventArgs", + "signature": "LibreMetaverse.EstateUsersReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EstateUsersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "EstateUsersReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "estateID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "allowedUsers", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUsersReplyEventArgs.AllowedUsers", + "kind": "property", + "name": "AllowedUsers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUsersReplyEventArgs.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EstateUsersReplyEventArgs.EstateID", + "kind": "property", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EventInfoReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "EventInfoReplyEventArgs", + "signature": "LibreMetaverse.EventInfoReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.EventInfoReplyEventArgs.#ctor(LibreMetaverse.DirectoryManager.EventInfo)", + "kind": "constructor", + "name": "EventInfoReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matchedEvent", + "type": "LibreMetaverse.DirectoryManager.EventInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EventInfoReplyEventArgs.MatchedEvent", + "kind": "property", + "name": "MatchedEvent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventInfo", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EventQueueRunningEventArgs", + "namespace": "LibreMetaverse", + "name": "EventQueueRunningEventArgs", + "signature": "LibreMetaverse.EventQueueRunningEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EventQueueRunningEventArgs.#ctor(LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "EventQueueRunningEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.EventQueueRunningEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EventSubscriptionHelper", + "namespace": "LibreMetaverse", + "name": "EventSubscriptionHelper", + "signature": "LibreMetaverse.EventSubscriptionHelper", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "kind": "method", + "name": "WaitForCondition", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TEventArgs", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "subscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "unsubscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "condition", + "type": "System.Func\u003CTEventArgs, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "timeoutMs", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "kind": "method", + "name": "WaitForEventAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CTResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TEventArgs", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "TResult", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "subscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "unsubscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "filter", + "type": "System.Func\u003CTEventArgs, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "resultSelector", + "type": "System.Func\u003CTEventArgs, TResult\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "timeoutMs", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "defaultValue", + "type": "TResult", + "passing": "value", + "optional": true, + "default": { + "type": "TResult" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.EventSubscriptionHelper.\u003CWaitForEventAsync\u003Ed__1\u003CTEventArgs, TResult\u003E" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "kind": "method", + "name": "WaitForEvent", + "static": true, + "visibility": "public", + "type": "TResult", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TEventArgs", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "TResult", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "subscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "unsubscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "filter", + "type": "System.Func\u003CTEventArgs, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "resultSelector", + "type": "System.Func\u003CTEventArgs, TResult\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "timeoutMs", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "defaultValue", + "type": "TResult", + "passing": "value", + "optional": true, + "default": { + "type": "TResult" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EventSubscription\u00601", + "namespace": "LibreMetaverse", + "name": "EventSubscription\u00601", + "signature": "LibreMetaverse.EventSubscription\u003CTEventArgs\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TEventArgs", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EventSubscription\u00601.#ctor(System.Action{System.EventHandler{\u00600}},System.Action{System.EventHandler{\u00600}},System.EventHandler{\u00600})", + "kind": "constructor", + "name": "EventSubscription\u00601", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "subscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "unsubscribe", + "type": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "handler", + "type": "System.EventHandler\u003CTEventArgs\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EventSubscription\u00601.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ExperienceInfoEventArgs", + "namespace": "LibreMetaverse", + "name": "ExperienceInfoEventArgs", + "signature": "LibreMetaverse.ExperienceInfoEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ExperienceInfoEventArgs.#ctor(LibreMetaverse.Messages.Linden.ExperienceInfoMessage)", + "kind": "constructor", + "name": "ExperienceInfoEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "experienceInfo", + "type": "LibreMetaverse.Messages.Linden.ExperienceInfoMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ExperienceInfoEventArgs.ExperienceInfo", + "kind": "property", + "name": "ExperienceInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceInfoMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ExperiencePreferencesEventArgs", + "namespace": "LibreMetaverse", + "name": "ExperiencePreferencesEventArgs", + "signature": "LibreMetaverse.ExperiencePreferencesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ExperiencePreferencesEventArgs.#ctor(LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage)", + "kind": "constructor", + "name": "ExperiencePreferencesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "preferences", + "type": "LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ExperiencePreferencesEventArgs.Preferences", + "kind": "property", + "name": "Preferences", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FieldType", + "namespace": "LibreMetaverse", + "name": "FieldType", + "signature": "LibreMetaverse.FieldType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.FieldType.BOOL", + "kind": "enum_value", + "name": "BOOL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.F32", + "kind": "enum_value", + "name": "F32", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.F64", + "kind": "enum_value", + "name": "F64", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Fixed", + "kind": "enum_value", + "name": "Fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.IPADDR", + "kind": "enum_value", + "name": "IPADDR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.IPPORT", + "kind": "enum_value", + "name": "IPPORT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Multiple", + "kind": "enum_value", + "name": "Multiple", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Quaternion", + "kind": "enum_value", + "name": "Quaternion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.S16", + "kind": "enum_value", + "name": "S16", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.S32", + "kind": "enum_value", + "name": "S32", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.S8", + "kind": "enum_value", + "name": "S8", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Single", + "kind": "enum_value", + "name": "Single", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.U16", + "kind": "enum_value", + "name": "U16", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.U32", + "kind": "enum_value", + "name": "U32", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.U64", + "kind": "enum_value", + "name": "U64", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.U8", + "kind": "enum_value", + "name": "U8", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.UUID", + "kind": "enum_value", + "name": "UUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Variable", + "kind": "enum_value", + "name": "Variable", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Vector3", + "kind": "enum_value", + "name": "Vector3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Vector3d", + "kind": "enum_value", + "name": "Vector3d", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FieldType.Vector4", + "kind": "enum_value", + "name": "Vector4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FieldType", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FileHelper", + "namespace": "LibreMetaverse", + "name": "FileHelper", + "signature": "LibreMetaverse.FileHelper", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FileHelper.SafeDirName(System.String)", + "kind": "method", + "name": "SafeDirName", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "original", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FileHelper.SafeFileName(System.String)", + "kind": "method", + "name": "SafeFileName", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "original", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FileHelper.Sanitize(System.String,System.Char[],System.Char)", + "kind": "method", + "name": "Sanitize", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "input", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invalidChars", + "type": "System.Char[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replacement", + "type": "System.Char", + "passing": "value", + "optional": true, + "default": { + "type": "System.Char", + "value": "_" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FileHelper.TryParseTwoNames(System.String,System.String@,System.String@)", + "kind": "method", + "name": "TryParseTwoNames", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "input", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "first", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "last", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FindObjectByPathReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "FindObjectByPathReplyEventArgs", + "signature": "LibreMetaverse.FindObjectByPathReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FindObjectByPathReplyEventArgs.#ctor(System.String,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "FindObjectByPathReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventoryObjectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FindObjectByPathReplyEventArgs.InventoryObjectID", + "kind": "property", + "name": "InventoryObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FindObjectByPathReplyEventArgs.Path", + "kind": "property", + "name": "Path", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FolderUpdatedEventArgs", + "namespace": "LibreMetaverse", + "name": "FolderUpdatedEventArgs", + "signature": "LibreMetaverse.FolderUpdatedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.FolderUpdatedEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean)", + "kind": "constructor", + "name": "FolderUpdatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FolderUpdatedEventArgs.FolderID", + "kind": "property", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FolderUpdatedEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ForceSelectObjectsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ForceSelectObjectsReplyEventArgs", + "signature": "LibreMetaverse.ForceSelectObjectsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ForceSelectObjectsReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},System.Boolean)", + "kind": "constructor", + "name": "ForceSelectObjectsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "resetList", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ForceSelectObjectsReplyEventArgs.ObjectIDs", + "kind": "property", + "name": "ObjectIDs", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ForceSelectObjectsReplyEventArgs.ResetList", + "kind": "property", + "name": "ResetList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ForceSelectObjectsReplyEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Formatters.UUIDFormatter", + "namespace": "LibreMetaverse.Formatters", + "name": "UUIDFormatter", + "signature": "LibreMetaverse.Formatters.UUIDFormatter", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "MessagePack.Formatters.IMessagePackFormatter", + "MessagePack.Formatters.IMessagePackFormatter\u003CLibreMetaverse.UUID\u003E" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Formatters.UUIDFormatter.Instance", + "kind": "field", + "name": "Instance", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Formatters.UUIDFormatter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.#ctor", + "kind": "constructor", + "name": "UUIDFormatter", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Deserialize(MessagePack.MessagePackReader@,MessagePack.MessagePackSerializerOptions)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "MessagePack.MessagePackReader\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "options", + "type": "MessagePack.MessagePackSerializerOptions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Serialize(MessagePack.MessagePackWriter@,LibreMetaverse.UUID,MessagePack.MessagePackSerializerOptions)", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "writer", + "type": "MessagePack.MessagePackWriter\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "options", + "type": "MessagePack.MessagePackSerializerOptions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendFoundReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendFoundReplyEventArgs", + "signature": "LibreMetaverse.FriendFoundReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendFoundReplyEventArgs.#ctor(LibreMetaverse.UUID,System.UInt64,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "FriendFoundReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "location", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendFoundReplyEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendFoundReplyEventArgs.Location", + "kind": "property", + "name": "Location", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendFoundReplyEventArgs.RegionHandle", + "kind": "property", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendInfo", + "namespace": "LibreMetaverse", + "name": "FriendInfo", + "signature": "LibreMetaverse.FriendInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendInfo.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.CanModifyMyObjects", + "kind": "property", + "name": "CanModifyMyObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.CanModifyTheirObjects", + "kind": "property", + "name": "CanModifyTheirObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.CanSeeMeOnMap", + "kind": "property", + "name": "CanSeeMeOnMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.CanSeeMeOnline", + "kind": "property", + "name": "CanSeeMeOnline", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.CanSeeThemOnMap", + "kind": "property", + "name": "CanSeeThemOnMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.CanSeeThemOnline", + "kind": "property", + "name": "CanSeeThemOnline", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.IsOnline", + "kind": "property", + "name": "IsOnline", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.MyFriendRights", + "kind": "property", + "name": "MyFriendRights", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FriendRights", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.TheirFriendRights", + "kind": "property", + "name": "TheirFriendRights", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FriendRights", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfo.UUID", + "kind": "property", + "name": "UUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendInfoEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendInfoEventArgs", + "signature": "LibreMetaverse.FriendInfoEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendInfoEventArgs.#ctor(LibreMetaverse.FriendInfo)", + "kind": "constructor", + "name": "FriendInfoEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "friend", + "type": "LibreMetaverse.FriendInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendInfoEventArgs.Friend", + "kind": "property", + "name": "Friend", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FriendInfo", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendNamesEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendNamesEventArgs", + "signature": "LibreMetaverse.FriendNamesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendNamesEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "kind": "constructor", + "name": "FriendNamesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "names", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendNamesEventArgs.Names", + "kind": "property", + "name": "Names", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendRights", + "namespace": "LibreMetaverse", + "name": "FriendRights", + "signature": "LibreMetaverse.FriendRights", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.FriendRights.CanModifyObjects", + "kind": "enum_value", + "name": "CanModifyObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FriendRights", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FriendRights", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FriendRights.CanSeeOnMap", + "kind": "enum_value", + "name": "CanSeeOnMap", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FriendRights", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FriendRights", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FriendRights.CanSeeOnline", + "kind": "enum_value", + "name": "CanSeeOnline", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FriendRights", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FriendRights", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FriendRights.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FriendRights", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FriendRights", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendsManager", + "namespace": "LibreMetaverse", + "name": "FriendsManager", + "signature": "LibreMetaverse.FriendsManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.FriendsManager.CallingCardOffered", + "kind": "event", + "name": "CallingCardOffered", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.CallingCardOfferedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendFoundReply", + "kind": "event", + "name": "FriendFoundReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendFoundReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendNames", + "kind": "event", + "name": "FriendNames", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendNamesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendOffline", + "kind": "event", + "name": "FriendOffline", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendInfoEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendOnline", + "kind": "event", + "name": "FriendOnline", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendInfoEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendRightsUpdate", + "kind": "event", + "name": "FriendRightsUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendInfoEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendshipOffered", + "kind": "event", + "name": "FriendshipOffered", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendshipOfferedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendshipResponse", + "kind": "event", + "name": "FriendshipResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendshipResponseEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.FriendshipTerminated", + "kind": "event", + "name": "FriendshipTerminated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendshipTerminatedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.FriendsManager.friendsListReady", + "kind": "event", + "name": "friendsListReady", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FriendsReadyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.AcceptCallingCard(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "AcceptCallingCard", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromAgentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.AcceptFriendship(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "AcceptFriendship", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromAgentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.AcceptFriendshipViaCapAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "AcceptFriendshipViaCapAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromAgentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.FriendsManager.\u003CAcceptFriendshipViaCapAsync\u003Ed__69" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.DeclineCallingCard(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "DeclineCallingCard", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromAgentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.DeclineFriendship(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "DeclineFriendship", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromAgentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.DeclineFriendshipViaCapAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "DeclineFriendshipViaCapAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fromAgentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.FriendsManager.\u003CDeclineFriendshipViaCapAsync\u003Ed__71" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.GiveCallingCard(LibreMetaverse.UUID)", + "kind": "method", + "name": "GiveCallingCard", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.GrantRights(LibreMetaverse.UUID,LibreMetaverse.FriendRights)", + "kind": "method", + "name": "GrantRights", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "friendID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rights", + "type": "LibreMetaverse.FriendRights", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.MapFriend(LibreMetaverse.UUID)", + "kind": "method", + "name": "MapFriend", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "friendID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.OfferFriendship(LibreMetaverse.UUID)", + "kind": "method", + "name": "OfferFriendship", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.OfferFriendship(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "OfferFriendship", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.OnFindAgentReplyHandler(System.Object,LibreMetaverse.PacketReceivedEventArgs)", + "kind": "method", + "name": "OnFindAgentReplyHandler", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sender", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "e", + "type": "LibreMetaverse.PacketReceivedEventArgs", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.RequestOnlineNotification(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestOnlineNotification", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "friendID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.TerminateFriendship(LibreMetaverse.UUID)", + "kind": "method", + "name": "TerminateFriendship", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.FriendsManager.TrackFriend(LibreMetaverse.UUID)", + "kind": "method", + "name": "TrackFriend", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "friendID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendsManager.FriendList", + "kind": "property", + "name": "FriendList", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.FriendInfo\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendsManager.FriendRequests", + "kind": "property", + "name": "FriendRequests", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendsReadyEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendsReadyEventArgs", + "signature": "LibreMetaverse.FriendsReadyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendsReadyEventArgs.#ctor(System.Int32)", + "kind": "constructor", + "name": "FriendsReadyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendsReadyEventArgs.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendshipOfferedEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendshipOfferedEventArgs", + "signature": "LibreMetaverse.FriendshipOfferedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendshipOfferedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "FriendshipOfferedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipOfferedEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipOfferedEventArgs.AgentName", + "kind": "property", + "name": "AgentName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipOfferedEventArgs.SessionID", + "kind": "property", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendshipResponseEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendshipResponseEventArgs", + "signature": "LibreMetaverse.FriendshipResponseEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendshipResponseEventArgs.#ctor(LibreMetaverse.UUID,System.String,System.Boolean)", + "kind": "constructor", + "name": "FriendshipResponseEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accepted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipResponseEventArgs.Accepted", + "kind": "property", + "name": "Accepted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipResponseEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipResponseEventArgs.AgentName", + "kind": "property", + "name": "AgentName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FriendshipTerminatedEventArgs", + "namespace": "LibreMetaverse", + "name": "FriendshipTerminatedEventArgs", + "signature": "LibreMetaverse.FriendshipTerminatedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.FriendshipTerminatedEventArgs.#ctor(LibreMetaverse.UUID,System.String)", + "kind": "constructor", + "name": "FriendshipTerminatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipTerminatedEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.FriendshipTerminatedEventArgs.AgentName", + "kind": "property", + "name": "AgentName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GLTFMaterialUpdate", + "namespace": "LibreMetaverse", + "name": "GLTFMaterialUpdate", + "signature": "LibreMetaverse.GLTFMaterialUpdate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GLTFMaterialUpdate.#ctor", + "kind": "constructor", + "name": "GLTFMaterialUpdate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GLTFMaterialUpdate.AssetId", + "kind": "property", + "name": "AssetId", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GLTFMaterialUpdate.ObjectId", + "kind": "property", + "name": "ObjectId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GLTFMaterialUpdate.Override", + "kind": "property", + "name": "Override", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.AssetMaterial", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GLTFMaterialUpdate.Side", + "kind": "property", + "name": "Side", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Genepool", + "namespace": "LibreMetaverse", + "name": "Genepool", + "signature": "LibreMetaverse.Genepool", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Genepool.Archetypes", + "kind": "field", + "name": "Archetypes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GenepoolArchetype[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Genepool.FindIndex(System.String)", + "kind": "method", + "name": "FindIndex", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Genepool.Get(System.Int32)", + "kind": "method", + "name": "Get", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GenepoolArchetype\u0026", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GenepoolArchetype", + "namespace": "LibreMetaverse", + "name": "GenepoolArchetype", + "signature": "LibreMetaverse.GenepoolArchetype", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.GenepoolArchetype.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GenepoolArchetype.Params", + "kind": "property", + "name": "Params", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ArchetypeParam[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GenericStreamingMessageEventArgs", + "namespace": "LibreMetaverse", + "name": "GenericStreamingMessageEventArgs", + "signature": "LibreMetaverse.GenericStreamingMessageEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GenericStreamingMessageEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.GenericStreamingMethod,System.Byte[])", + "kind": "constructor", + "name": "GenericStreamingMessageEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "LibreMetaverse.GenericStreamingMethod", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GenericStreamingMessageEventArgs.Data", + "kind": "property", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GenericStreamingMessageEventArgs.Method", + "kind": "property", + "name": "Method", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GenericStreamingMethod", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GenericStreamingMessageEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GenericStreamingMethod", + "namespace": "LibreMetaverse", + "name": "GenericStreamingMethod", + "signature": "LibreMetaverse.GenericStreamingMethod", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt16", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GenericStreamingMethod.GltfMaterialOverride", + "kind": "enum_value", + "name": "GltfMaterialOverride", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GenericStreamingMethod", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GenericStreamingMethod", + "value": "16757" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GenericStreamingMethod.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GenericStreamingMethod", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GenericStreamingMethod", + "value": "65535" + }, + "numeric_width": 16, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Grass", + "namespace": "LibreMetaverse", + "name": "Grass", + "signature": "LibreMetaverse.Grass", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Grass.Grass0", + "kind": "enum_value", + "name": "Grass0", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Grass", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Grass.Grass1", + "kind": "enum_value", + "name": "Grass1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Grass", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Grass.Grass2", + "kind": "enum_value", + "name": "Grass2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Grass", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Grass.Grass3", + "kind": "enum_value", + "name": "Grass3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Grass", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Grass.Grass4", + "kind": "enum_value", + "name": "Grass4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Grass", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Grass.Undergrowth1", + "kind": "enum_value", + "name": "Undergrowth1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Grass", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GrassDefinition", + "namespace": "LibreMetaverse", + "name": "GrassDefinition", + "signature": "LibreMetaverse.GrassDefinition", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.GrassDefinition.BladeSizeX", + "kind": "property", + "name": "BladeSizeX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GrassDefinition.BladeSizeY", + "kind": "property", + "name": "BladeSizeY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GrassDefinition.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GrassDefinition.SpeciesId", + "kind": "property", + "name": "SpeciesId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GrassDefinition.TextureId", + "kind": "property", + "name": "TextureId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GrassDefinitions", + "namespace": "LibreMetaverse", + "name": "GrassDefinitions", + "signature": "LibreMetaverse.GrassDefinitions", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GrassDefinitions.All", + "kind": "field", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GrassDefinition[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GrassDefinitions.Get(LibreMetaverse.Grass)", + "kind": "method", + "name": "Get", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GrassDefinition\u0026", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "species", + "type": "LibreMetaverse.Grass", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridClient", + "namespace": "LibreMetaverse", + "name": "GridClient", + "signature": "LibreMetaverse.GridClient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.IGridClient", + "System.IAsyncDisposable", + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GridClient.#ctor", + "kind": "constructor", + "name": "GridClient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridClient.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridClient.DisposeAsync", + "kind": "method", + "name": "DisposeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.ValueTask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridClient.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.AisClient", + "kind": "property", + "name": "AisClient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryAISClient", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Animesh", + "kind": "property", + "name": "Animesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Animesh.AnimeshManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Appearance", + "kind": "property", + "name": "Appearance", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AppearanceManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Assets", + "kind": "property", + "name": "Assets", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Avatars", + "kind": "property", + "name": "Avatars", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AvatarManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.CapsRateLimiter", + "kind": "property", + "name": "CapsRateLimiter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.CapsRateLimiter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Directory", + "kind": "property", + "name": "Directory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Environment", + "kind": "property", + "name": "Environment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Estate", + "kind": "property", + "name": "Estate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Friends", + "kind": "property", + "name": "Friends", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FriendsManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Grid", + "kind": "property", + "name": "Grid", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Groups", + "kind": "property", + "name": "Groups", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.HttpCapsClient", + "kind": "property", + "name": "HttpCapsClient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.HttpCapsClient", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.InterestList", + "kind": "property", + "name": "InterestList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InterestListManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Inventory", + "kind": "property", + "name": "Inventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Marketplace", + "kind": "property", + "name": "Marketplace", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Network", + "kind": "property", + "name": "Network", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Objects", + "kind": "property", + "name": "Objects", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ObjectManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Parcels", + "kind": "property", + "name": "Parcels", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Self", + "kind": "property", + "name": "Self", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Settings", + "kind": "property", + "name": "Settings", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Settings", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Sound", + "kind": "property", + "name": "Sound", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SoundManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Stats", + "kind": "property", + "name": "Stats", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Stats.UtilizationStatistics", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Terrain", + "kind": "property", + "name": "Terrain", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TerrainManager", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.Throttle", + "kind": "property", + "name": "Throttle", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentThrottle", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridClient.TimeProvider", + "kind": "property", + "name": "TimeProvider", + "static": false, + "visibility": "public", + "type": "System.TimeProvider", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridClientBakingTextureProvider", + "namespace": "LibreMetaverse", + "name": "GridClientBakingTextureProvider", + "signature": "LibreMetaverse.GridClientBakingTextureProvider", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.IBakingTextureProvider" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GridClientBakingTextureProvider.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "GridClientBakingTextureProvider", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GridClientBakingTextureProvider.RequestTextureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestTextureAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridClientServiceCollectionExtensions", + "namespace": "LibreMetaverse", + "name": "GridClientServiceCollectionExtensions", + "signature": "LibreMetaverse.GridClientServiceCollectionExtensions", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GridClientServiceCollectionExtensions.AddGridClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{LibreMetaverse.Settings})", + "kind": "method", + "name": "AddGridClient", + "static": true, + "visibility": "public", + "type": "Microsoft.Extensions.DependencyInjection.IServiceCollection", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "services", + "type": "Microsoft.Extensions.DependencyInjection.IServiceCollection", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "configure", + "type": "System.Action\u003CLibreMetaverse.Settings\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CLibreMetaverse.Settings\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridItemType", + "namespace": "LibreMetaverse", + "name": "GridItemType", + "signature": "LibreMetaverse.GridItemType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GridItemType.AdultEvent", + "kind": "enum_value", + "name": "AdultEvent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.AdultLandForSale", + "kind": "enum_value", + "name": "AdultLandForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.AgentLocations", + "kind": "enum_value", + "name": "AgentLocations", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.Classified", + "kind": "enum_value", + "name": "Classified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.LandForSale", + "kind": "enum_value", + "name": "LandForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.MatureEvent", + "kind": "enum_value", + "name": "MatureEvent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.PgEvent", + "kind": "enum_value", + "name": "PgEvent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.Popular", + "kind": "enum_value", + "name": "Popular", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridItemType.Telehub", + "kind": "enum_value", + "name": "Telehub", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridItemType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridItemsEventArgs", + "namespace": "LibreMetaverse", + "name": "GridItemsEventArgs", + "signature": "LibreMetaverse.GridItemsEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GridItemsEventArgs.#ctor(LibreMetaverse.GridItemType,System.Collections.Generic.List{LibreMetaverse.MapItem})", + "kind": "constructor", + "name": "GridItemsEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.GridItemType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridItemsEventArgs.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridItemsEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridItemType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridLayer", + "namespace": "LibreMetaverse", + "name": "GridLayer", + "signature": "LibreMetaverse.GridLayer", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GridLayer.Bottom", + "kind": "field", + "name": "Bottom", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridLayer.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridLayer.Left", + "kind": "field", + "name": "Left", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridLayer.Right", + "kind": "field", + "name": "Right", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridLayer.Top", + "kind": "field", + "name": "Top", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridLayer.ContainsRegion(System.Int32,System.Int32)", + "kind": "method", + "name": "ContainsRegion", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridLayerEventArgs", + "namespace": "LibreMetaverse", + "name": "GridLayerEventArgs", + "signature": "LibreMetaverse.GridLayerEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GridLayerEventArgs.#ctor(LibreMetaverse.GridLayer)", + "kind": "constructor", + "name": "GridLayerEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "layer", + "type": "LibreMetaverse.GridLayer", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridLayerEventArgs.Layer", + "kind": "property", + "name": "Layer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridLayer", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridLayerType", + "namespace": "LibreMetaverse", + "name": "GridLayerType", + "signature": "LibreMetaverse.GridLayerType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GridLayerType.LandForSale", + "kind": "enum_value", + "name": "LandForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridLayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridLayerType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridLayerType.Objects", + "kind": "enum_value", + "name": "Objects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridLayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridLayerType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridLayerType.Terrain", + "kind": "enum_value", + "name": "Terrain", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GridLayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GridLayerType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridManager", + "namespace": "LibreMetaverse", + "name": "GridManager", + "signature": "LibreMetaverse.GridManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.GridManager.CoarseLocationUpdate", + "kind": "event", + "name": "CoarseLocationUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.CoarseLocationUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GridManager.GridItems", + "kind": "event", + "name": "GridItems", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GridItemsEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GridManager.GridLayer", + "kind": "event", + "name": "GridLayer", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GridLayerEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GridManager.GridRegion", + "kind": "event", + "name": "GridRegion", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GridRegionEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GridManager.RegionHandleReply", + "kind": "event", + "name": "RegionHandleReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RegionHandleReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "GridManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.String,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetGridRegionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.GridRegion\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.GridManager.\u003CGetGridRegionAsync\u003Ed__67" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.UInt64,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetGridRegionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.GridRegion\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.GridManager.\u003CGetGridRegionAsync\u003Ed__68" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.MapItemsAsync(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "kind": "method", + "name": "MapItemsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.GridItemType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.GridManager.\u003CMapItemsAsync\u003Ed__69" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.RequestMainlandSims(LibreMetaverse.GridLayerType)", + "kind": "method", + "name": "RequestMainlandSims", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "kind": "method", + "name": "RequestMapBlocks", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "minX", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "minY", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "maxX", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "maxY", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "returnNonExistent", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.RequestMapItems(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType)", + "kind": "method", + "name": "RequestMapItems", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.GridItemType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.RequestMapLayerAsync(LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestMapLayerAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.GridManager.\u003CRequestMapLayerAsync\u003Ed__61" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.RequestMapRegion(System.String,LibreMetaverse.GridLayerType)", + "kind": "method", + "name": "RequestMapRegion", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "layer", + "type": "LibreMetaverse.GridLayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridManager.RequestRegionHandle(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestRegionHandle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.RegionsByHandleReadOnly", + "kind": "property", + "name": "RegionsByHandleReadOnly", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.UInt64, LibreMetaverse.GridRegion\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.RegionsByUUIDReadOnly", + "kind": "property", + "name": "RegionsByUUIDReadOnly", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.UInt64\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.RegionsReadOnly", + "kind": "property", + "name": "RegionsReadOnly", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, LibreMetaverse.GridRegion\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.SunAngVelocity", + "kind": "property", + "name": "SunAngVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.SunDirection", + "kind": "property", + "name": "SunDirection", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.SunPhase", + "kind": "property", + "name": "SunPhase", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridManager.TimeOfDay", + "kind": "property", + "name": "TimeOfDay", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridRegion", + "namespace": "LibreMetaverse", + "name": "GridRegion", + "signature": "LibreMetaverse.GridRegion", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GridRegion.Access", + "kind": "field", + "name": "Access", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.Agents", + "kind": "field", + "name": "Agents", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.MapImageID", + "kind": "field", + "name": "MapImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.WaterHeight", + "kind": "field", + "name": "WaterHeight", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GridRegion.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridRegion.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GridRegion.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GridRegion.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GridRegionEventArgs", + "namespace": "LibreMetaverse", + "name": "GridRegionEventArgs", + "signature": "LibreMetaverse.GridRegionEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GridRegionEventArgs.#ctor(LibreMetaverse.GridRegion)", + "kind": "constructor", + "name": "GridRegionEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "region", + "type": "LibreMetaverse.GridRegion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GridRegionEventArgs.Region", + "kind": "property", + "name": "Region", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridRegion", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Group", + "namespace": "LibreMetaverse", + "name": "Group", + "signature": "LibreMetaverse.Group", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Group\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Group.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.Charter", + "kind": "field", + "name": "Charter", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.Contribution", + "kind": "field", + "name": "Contribution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.FounderID", + "kind": "field", + "name": "FounderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.GroupMembershipCount", + "kind": "field", + "name": "GroupMembershipCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.GroupRolesCount", + "kind": "field", + "name": "GroupRolesCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.InsigniaID", + "kind": "field", + "name": "InsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.ListInProfile", + "kind": "field", + "name": "ListInProfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.MemberTitle", + "kind": "field", + "name": "MemberTitle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.MembershipFee", + "kind": "field", + "name": "MembershipFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.Money", + "kind": "field", + "name": "Money", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.OpenEnrollment", + "kind": "field", + "name": "OpenEnrollment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.OwnerRole", + "kind": "field", + "name": "OwnerRole", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.Powers", + "kind": "field", + "name": "Powers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Group.ShowInList", + "kind": "field", + "name": "ShowInList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Group.Equals(LibreMetaverse.Group)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Group", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Group.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Group.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Group.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupAccountSummary", + "namespace": "LibreMetaverse", + "name": "GroupAccountSummary", + "signature": "LibreMetaverse.GroupAccountSummary", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.Balance", + "kind": "field", + "name": "Balance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.GroupTaxCurrent", + "kind": "field", + "name": "GroupTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.GroupTaxEstimate", + "kind": "field", + "name": "GroupTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.LandTaxCurrent", + "kind": "field", + "name": "LandTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.LandTaxEstimate", + "kind": "field", + "name": "LandTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.LastTaxDate", + "kind": "field", + "name": "LastTaxDate", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.LightTaxCurrent", + "kind": "field", + "name": "LightTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.LightTaxEstimate", + "kind": "field", + "name": "LightTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.NonExemptMembers", + "kind": "field", + "name": "NonExemptMembers", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.ObjectTaxCurrent", + "kind": "field", + "name": "ObjectTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.ObjectTaxEstimate", + "kind": "field", + "name": "ObjectTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.ParcelDirFeeCurrent", + "kind": "field", + "name": "ParcelDirFeeCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.ParcelDirFeeEstimate", + "kind": "field", + "name": "ParcelDirFeeEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.StartDate", + "kind": "field", + "name": "StartDate", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.TaxDate", + "kind": "field", + "name": "TaxDate", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.TotalCredits", + "kind": "field", + "name": "TotalCredits", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupAccountSummary.TotalDebits", + "kind": "field", + "name": "TotalDebits", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupAccountSummaryReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupAccountSummaryReplyEventArgs", + "signature": "LibreMetaverse.GroupAccountSummaryReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupAccountSummaryReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.GroupAccountSummary)", + "kind": "constructor", + "name": "GroupAccountSummaryReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "summary", + "type": "LibreMetaverse.GroupAccountSummary", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupAccountSummaryReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupAccountSummaryReplyEventArgs.Summary", + "kind": "property", + "name": "Summary", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupAccountSummary", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupBanAction", + "namespace": "LibreMetaverse", + "name": "GroupBanAction", + "signature": "LibreMetaverse.GroupBanAction", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupBanAction.Ban", + "kind": "enum_value", + "name": "Ban", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupBanAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupBanAction", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupBanAction.Unban", + "kind": "enum_value", + "name": "Unban", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupBanAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupBanAction", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupChatJoinedEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupChatJoinedEventArgs", + "signature": "LibreMetaverse.GroupChatJoinedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupChatJoinedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean)", + "kind": "constructor", + "name": "GroupChatJoinedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupChatSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tmpSessionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupChatJoinedEventArgs.SessionID", + "kind": "property", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupChatJoinedEventArgs.SessionName", + "kind": "property", + "name": "SessionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupChatJoinedEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupChatJoinedEventArgs.TmpSessionID", + "kind": "property", + "name": "TmpSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupCreatedReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupCreatedReplyEventArgs", + "signature": "LibreMetaverse.GroupCreatedReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupCreatedReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.String)", + "kind": "constructor", + "name": "GroupCreatedReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupCreatedReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupCreatedReplyEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupCreatedReplyEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupDroppedEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupDroppedEventArgs", + "signature": "LibreMetaverse.GroupDroppedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupDroppedEventArgs.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "GroupDroppedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupDroppedEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupInvitationEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupInvitationEventArgs", + "signature": "LibreMetaverse.GroupInvitationEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupInvitationEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.String,System.String)", + "kind": "constructor", + "name": "GroupInvitationEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agentName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.Accept", + "kind": "property", + "name": "Accept", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.FromName", + "kind": "property", + "name": "FromName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupManager", + "namespace": "LibreMetaverse", + "name": "GroupManager", + "signature": "LibreMetaverse.GroupManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.GroupManager.BannedAgents", + "kind": "event", + "name": "BannedAgents", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.BannedAgentsEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.CurrentGroups", + "kind": "event", + "name": "CurrentGroups", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.CurrentGroupsEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupAccountSummaryReply", + "kind": "event", + "name": "GroupAccountSummaryReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupAccountSummaryReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupCreatedReply", + "kind": "event", + "name": "GroupCreatedReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupCreatedReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupDropped", + "kind": "event", + "name": "GroupDropped", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupDroppedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupInvitation", + "kind": "event", + "name": "GroupInvitation", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupInvitationEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupJoinedReply", + "kind": "event", + "name": "GroupJoinedReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupOperationEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupLeaveReply", + "kind": "event", + "name": "GroupLeaveReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupOperationEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupMemberEjected", + "kind": "event", + "name": "GroupMemberEjected", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupOperationEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupMembersReply", + "kind": "event", + "name": "GroupMembersReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupMembersReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupNamesReply", + "kind": "event", + "name": "GroupNamesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupNamesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupNoticesListReply", + "kind": "event", + "name": "GroupNoticesListReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupNoticesListReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupProfile", + "kind": "event", + "name": "GroupProfile", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupProfileEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupRoleDataReply", + "kind": "event", + "name": "GroupRoleDataReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupRolesDataReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupRoleMembersReply", + "kind": "event", + "name": "GroupRoleMembersReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupRolesMembersReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.GroupManager.GroupTitlesReply", + "kind": "event", + "name": "GroupTitlesReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GroupTitlesReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "GroupManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.ActivateGroup(LibreMetaverse.UUID)", + "kind": "method", + "name": "ActivateGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.ActivateTitle(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "ActivateTitle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "role", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.AddToRole(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "AddToRole", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "role", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "member", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.CreateRole(LibreMetaverse.UUID,LibreMetaverse.GroupRole)", + "kind": "method", + "name": "CreateRole", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "role", + "type": "LibreMetaverse.GroupRole", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.DeleteRole(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "DeleteRole", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roleID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.EjectUser(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "EjectUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "member", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.Invite(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID)", + "kind": "method", + "name": "Invite", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roles", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "requestedAgent", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.LeaveGroup(LibreMetaverse.UUID)", + "kind": "method", + "name": "LeaveGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RemoveFromRole(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "RemoveFromRole", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "role", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "member", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestBanActionAsync(LibreMetaverse.UUID,LibreMetaverse.GroupBanAction,LibreMetaverse.UUID[],System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestBanActionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "LibreMetaverse.GroupBanAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "agents", + "type": "LibreMetaverse.UUID[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.GroupManager.\u003CRequestBanActionAsync\u003Ed__146" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestBannedAgentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestBannedAgentsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.GroupManager.\u003CRequestBannedAgentsAsync\u003Ed__145" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestCreateGroup(LibreMetaverse.Group)", + "kind": "method", + "name": "RequestCreateGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.Group", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestCurrentGroups", + "kind": "method", + "name": "RequestCurrentGroups", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupAccountSummary(LibreMetaverse.UUID,System.Int32,System.Int32)", + "kind": "method", + "name": "RequestGroupAccountSummary", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "intervalDays", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "currentInterval", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupMembers(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupMembers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupName(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupName", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNames(System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "method", + "name": "RequestGroupNames", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupIDs", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNotice(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupNotice", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "noticeID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNoticesList(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupNoticesList", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupProfile(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupProfile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupRoles(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupRoles", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupRolesMembers(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupRolesMembers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestGroupTitles(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGroupTitles", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.RequestJoinGroup(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestJoinGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.SendGroupNotice(LibreMetaverse.UUID,LibreMetaverse.GroupNotice)", + "kind": "method", + "name": "SendGroupNotice", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notice", + "type": "LibreMetaverse.GroupNotice", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.SetGroupAcceptNotices(LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "kind": "method", + "name": "SetGroupAcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "acceptNotices", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "listInProfile", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.SetGroupContribution(LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "SetGroupContribution", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contribution", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.StartProposal(LibreMetaverse.UUID,LibreMetaverse.GroupProposal)", + "kind": "method", + "name": "StartProposal", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prop", + "type": "LibreMetaverse.GroupProposal", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.UpdateGroup(LibreMetaverse.UUID,LibreMetaverse.Group)", + "kind": "method", + "name": "UpdateGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "group", + "type": "LibreMetaverse.Group", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupManager.UpdateRole(LibreMetaverse.GroupRole)", + "kind": "method", + "name": "UpdateRole", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "role", + "type": "LibreMetaverse.GroupRole", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupManager.CanJoinMoreGroups", + "kind": "property", + "name": "CanJoinMoreGroups", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupManager.CurrentGroupCount", + "kind": "property", + "name": "CurrentGroupCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupManager.GroupMembershipLimit", + "kind": "property", + "name": "GroupMembershipLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupMember", + "namespace": "LibreMetaverse", + "name": "GroupMember", + "signature": "LibreMetaverse.GroupMember", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupMember.Contribution", + "kind": "field", + "name": "Contribution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupMember.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupMember.IsOwner", + "kind": "field", + "name": "IsOwner", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupMember.OnlineStatus", + "kind": "field", + "name": "OnlineStatus", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupMember.Powers", + "kind": "field", + "name": "Powers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupMember.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupMembersReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupMembersReplyEventArgs", + "signature": "LibreMetaverse.GroupMembersReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupMembersReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.GroupMember})", + "kind": "constructor", + "name": "GroupMembersReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requestID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "members", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupMember\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupMembersReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupMembersReplyEventArgs.Members", + "kind": "property", + "name": "Members", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupMember\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupMembersReplyEventArgs.RequestID", + "kind": "property", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupNamesEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupNamesEventArgs", + "signature": "LibreMetaverse.GroupNamesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupNamesEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "kind": "constructor", + "name": "GroupNamesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupNames", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupNamesEventArgs.GroupNames", + "kind": "property", + "name": "GroupNames", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupNotice", + "namespace": "LibreMetaverse", + "name": "GroupNotice", + "signature": "LibreMetaverse.GroupNotice", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupNotice.AttachmentID", + "kind": "field", + "name": "AttachmentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNotice.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNotice.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNotice.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupNotice.SerializeAttachment", + "kind": "method", + "name": "SerializeAttachment", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupNoticesListEntry", + "namespace": "LibreMetaverse", + "name": "GroupNoticesListEntry", + "signature": "LibreMetaverse.GroupNoticesListEntry", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupNoticesListEntry.AssetType", + "kind": "field", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNoticesListEntry.FromName", + "kind": "field", + "name": "FromName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNoticesListEntry.HasAttachment", + "kind": "field", + "name": "HasAttachment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNoticesListEntry.NoticeID", + "kind": "field", + "name": "NoticeID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNoticesListEntry.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupNoticesListEntry.Timestamp", + "kind": "field", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupNoticesListReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupNoticesListReplyEventArgs", + "signature": "LibreMetaverse.GroupNoticesListReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupNoticesListReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.GroupNoticesListEntry})", + "kind": "constructor", + "name": "GroupNoticesListReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notices", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.GroupNoticesListEntry\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupNoticesListReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupNoticesListReplyEventArgs.Notices", + "kind": "property", + "name": "Notices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.GroupNoticesListEntry\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupOperationEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupOperationEventArgs", + "signature": "LibreMetaverse.GroupOperationEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupOperationEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean)", + "kind": "constructor", + "name": "GroupOperationEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupOperationEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupOperationEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupPowers", + "namespace": "LibreMetaverse", + "name": "GroupPowers", + "signature": "LibreMetaverse.GroupPowers", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt64", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupPowers.Accountable", + "kind": "enum_value", + "name": "Accountable", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "1099511627776" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AllowEditLand", + "kind": "enum_value", + "name": "AllowEditLand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "8388608" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AllowFly", + "kind": "enum_value", + "name": "AllowFly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "16777216" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AllowLandmark", + "kind": "enum_value", + "name": "AllowLandmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "67108864" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AllowRez", + "kind": "enum_value", + "name": "AllowRez", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "33554432" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AllowSetHome", + "kind": "enum_value", + "name": "AllowSetHome", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "268435456" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AllowVoiceChat", + "kind": "enum_value", + "name": "AllowVoiceChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "134217728" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AssignMember", + "kind": "enum_value", + "name": "AssignMember", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "256" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.AssignMemberLimited", + "kind": "enum_value", + "name": "AssignMemberLimited", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "128" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ChangeActions", + "kind": "enum_value", + "name": "ChangeActions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "1024" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ChangeIdentity", + "kind": "enum_value", + "name": "ChangeIdentity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "2048" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ChangeMedia", + "kind": "enum_value", + "name": "ChangeMedia", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "1048576" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ChangeOptions", + "kind": "enum_value", + "name": "ChangeOptions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "8" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.CreateRole", + "kind": "enum_value", + "name": "CreateRole", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "16" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.DeedObject", + "kind": "enum_value", + "name": "DeedObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "68719476736" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.DeleteRole", + "kind": "enum_value", + "name": "DeleteRole", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "32" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.Eject", + "kind": "enum_value", + "name": "Eject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "4" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ExperienceAdmin", + "kind": "enum_value", + "name": "ExperienceAdmin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "562949953421312" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ExperienceCreator", + "kind": "enum_value", + "name": "ExperienceCreator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "1125899906842624" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.FindPlaces", + "kind": "enum_value", + "name": "FindPlaces", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "131072" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.GroupBanAccess", + "kind": "enum_value", + "name": "GroupBanAccess", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "2251799813685248" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.HostEvent", + "kind": "enum_value", + "name": "HostEvent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "2199023255552" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.Invite", + "kind": "enum_value", + "name": "Invite", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "2" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.JoinChat", + "kind": "enum_value", + "name": "JoinChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "65536" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandChangeIdentity", + "kind": "enum_value", + "name": "LandChangeIdentity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "262144" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandDeed", + "kind": "enum_value", + "name": "LandDeed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "4096" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandDivideJoin", + "kind": "enum_value", + "name": "LandDivideJoin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "32768" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandEdit", + "kind": "enum_value", + "name": "LandEdit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "2097152" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandEjectAndFreeze", + "kind": "enum_value", + "name": "LandEjectAndFreeze", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "4294967296" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandGardening", + "kind": "enum_value", + "name": "LandGardening", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "34359738368" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandManageAllowed", + "kind": "enum_value", + "name": "LandManageAllowed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "536870912" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandManageBanned", + "kind": "enum_value", + "name": "LandManageBanned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "1073741824" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandManagePasses", + "kind": "enum_value", + "name": "LandManagePasses", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "2147483648" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandOptions", + "kind": "enum_value", + "name": "LandOptions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "4194304" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandRelease", + "kind": "enum_value", + "name": "LandRelease", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "8192" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.LandSetSale", + "kind": "enum_value", + "name": "LandSetSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "16384" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.MemberVisible", + "kind": "enum_value", + "name": "MemberVisible", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "140737488355328" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ModerateChat", + "kind": "enum_value", + "name": "ModerateChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "137438953472" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "0" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ObjectManipulate", + "kind": "enum_value", + "name": "ObjectManipulate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "274877906944" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ObjectSetForSale", + "kind": "enum_value", + "name": "ObjectSetForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "549755813888" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ReceiveNotices", + "kind": "enum_value", + "name": "ReceiveNotices", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "8796093022208" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.RemoveMember", + "kind": "enum_value", + "name": "RemoveMember", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "512" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ReturnGroupOwned", + "kind": "enum_value", + "name": "ReturnGroupOwned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "281474976710656" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ReturnGroupSet", + "kind": "enum_value", + "name": "ReturnGroupSet", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "8589934592" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.ReturnNonGroup", + "kind": "enum_value", + "name": "ReturnNonGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "17179869184" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.RoleProperties", + "kind": "enum_value", + "name": "RoleProperties", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "64" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.SendNotices", + "kind": "enum_value", + "name": "SendNotices", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "4398046511104" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.SetLandingPoint", + "kind": "enum_value", + "name": "SetLandingPoint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "524288" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.StartProposal", + "kind": "enum_value", + "name": "StartProposal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "17592186044416" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupPowers.VoteOnProposal", + "kind": "enum_value", + "name": "VoteOnProposal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupPowers", + "value": "35184372088832" + }, + "numeric_width": 64, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupProfileEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupProfileEventArgs", + "signature": "LibreMetaverse.GroupProfileEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupProfileEventArgs.#ctor(LibreMetaverse.Group)", + "kind": "constructor", + "name": "GroupProfileEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "group", + "type": "LibreMetaverse.Group", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupProfileEventArgs.Group", + "kind": "property", + "name": "Group", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Group", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupProposal", + "namespace": "LibreMetaverse", + "name": "GroupProposal", + "signature": "LibreMetaverse.GroupProposal", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupProposal.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupProposal.Majority", + "kind": "field", + "name": "Majority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupProposal.Quorum", + "kind": "field", + "name": "Quorum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupProposal.VoteText", + "kind": "field", + "name": "VoteText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupRole", + "namespace": "LibreMetaverse", + "name": "GroupRole", + "signature": "LibreMetaverse.GroupRole", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupRole.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRole.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRole.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRole.Members", + "kind": "field", + "name": "Members", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRole.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRole.Powers", + "kind": "field", + "name": "Powers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRole.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupRole.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupRoleChangeType", + "namespace": "LibreMetaverse", + "name": "GroupRoleChangeType", + "signature": "LibreMetaverse.GroupRoleChangeType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupRoleChangeType.AddToRole", + "kind": "enum_value", + "name": "AddToRole", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleChangeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleChangeType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRoleChangeType.RemoveFromRole", + "kind": "enum_value", + "name": "RemoveFromRole", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleChangeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleChangeType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupRoleUpdate", + "namespace": "LibreMetaverse", + "name": "GroupRoleUpdate", + "signature": "LibreMetaverse.GroupRoleUpdate", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupRoleUpdate.Create", + "kind": "enum_value", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleUpdate", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleUpdate", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRoleUpdate.Delete", + "kind": "enum_value", + "name": "Delete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleUpdate", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleUpdate", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRoleUpdate.NoUpdate", + "kind": "enum_value", + "name": "NoUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleUpdate", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleUpdate", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRoleUpdate.UpdateAll", + "kind": "enum_value", + "name": "UpdateAll", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleUpdate", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleUpdate", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRoleUpdate.UpdateData", + "kind": "enum_value", + "name": "UpdateData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleUpdate", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleUpdate", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupRoleUpdate.UpdatePowers", + "kind": "enum_value", + "name": "UpdatePowers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.GroupRoleUpdate", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.GroupRoleUpdate", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupRolesDataReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupRolesDataReplyEventArgs", + "signature": "LibreMetaverse.GroupRolesDataReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupRolesDataReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.GroupRole})", + "kind": "constructor", + "name": "GroupRolesDataReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requestID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roles", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupRole\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupRolesDataReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupRolesDataReplyEventArgs.RequestID", + "kind": "property", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupRolesDataReplyEventArgs.Roles", + "kind": "property", + "name": "Roles", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupRole\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupRolesMembersReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupRolesMembersReplyEventArgs", + "signature": "LibreMetaverse.GroupRolesMembersReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupRolesMembersReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{System.Collections.Generic.KeyValuePair{LibreMetaverse.UUID,LibreMetaverse.UUID}})", + "kind": "constructor", + "name": "GroupRolesMembersReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requestID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rolesMembers", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.KeyValuePair\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupRolesMembersReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupRolesMembersReplyEventArgs.RequestID", + "kind": "property", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupRolesMembersReplyEventArgs.RolesMembers", + "kind": "property", + "name": "RolesMembers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.KeyValuePair\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupTitle", + "namespace": "LibreMetaverse", + "name": "GroupTitle", + "signature": "LibreMetaverse.GroupTitle", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupTitle.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupTitle.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupTitle.Selected", + "kind": "field", + "name": "Selected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupTitle.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.GroupTitle.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupTitlesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "GroupTitlesReplyEventArgs", + "signature": "LibreMetaverse.GroupTitlesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.GroupTitlesReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.GroupTitle})", + "kind": "constructor", + "name": "GroupTitlesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requestID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "titles", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupTitle\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupTitlesReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupTitlesReplyEventArgs.RequestID", + "kind": "property", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.GroupTitlesReplyEventArgs.Titles", + "kind": "property", + "name": "Titles", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupTitle\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.GroupVoteMajority", + "namespace": "LibreMetaverse", + "name": "GroupVoteMajority", + "signature": "LibreMetaverse.GroupVoteMajority", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.GroupVoteMajority.SimpleMajority", + "kind": "constant", + "name": "SimpleMajority", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "0.5" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupVoteMajority.TwoThirdsMajority", + "kind": "constant", + "name": "TwoThirdsMajority", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "0.667" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.GroupVoteMajority.Unanimous", + "kind": "constant", + "name": "Unanimous", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "1" + }, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.HandPose", + "namespace": "LibreMetaverse", + "name": "HandPose", + "signature": "LibreMetaverse.HandPose", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.HandPose.Fist", + "kind": "enum_value", + "name": "Fist", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Fist_Left", + "kind": "enum_value", + "name": "Fist_Left", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Fist_Right", + "kind": "enum_value", + "name": "Fist_Right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Peace_Right", + "kind": "enum_value", + "name": "Peace_Right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Point_Both", + "kind": "enum_value", + "name": "Point_Both", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Point_Left", + "kind": "enum_value", + "name": "Point_Left", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Point_Right", + "kind": "enum_value", + "name": "Point_Right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Relaxed", + "kind": "enum_value", + "name": "Relaxed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Relaxed_Left", + "kind": "enum_value", + "name": "Relaxed_Left", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Relaxed_Right", + "kind": "enum_value", + "name": "Relaxed_Right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Salute_Right", + "kind": "enum_value", + "name": "Salute_Right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Spread", + "kind": "enum_value", + "name": "Spread", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HandPose.Typing", + "kind": "enum_value", + "name": "Typing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HandPose", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HandPose", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Helpers", + "namespace": "LibreMetaverse", + "name": "Helpers", + "signature": "LibreMetaverse.Helpers", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Helpers.MSG_APPENDED_ACKS", + "kind": "constant", + "name": "MSG_APPENDED_ACKS", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "16" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Helpers.MSG_RELIABLE", + "kind": "constant", + "name": "MSG_RELIABLE", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "64" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Helpers.MSG_RESENT", + "kind": "constant", + "name": "MSG_RESENT", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "32" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Helpers.MSG_ZEROCODED", + "kind": "constant", + "name": "MSG_ZEROCODED", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "128" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.CopyStream(System.IO.Stream,System.IO.Stream)", + "kind": "method", + "name": "CopyStream", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "input", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "output", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.DecompressOSD(System.Byte[])", + "kind": "method", + "name": "DecompressOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "meshBytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.FloatToTerseString(System.Single)", + "kind": "method", + "name": "FloatToTerseString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String)", + "kind": "method", + "name": "GetResourceStream", + "static": true, + "visibility": "public", + "type": "System.IO.Stream", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "resourceName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String,System.String)", + "kind": "method", + "name": "GetResourceStream", + "static": true, + "visibility": "public", + "type": "System.IO.Stream", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "resourceName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "searchPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.GlobalPosToRegionHandle(System.Single,System.Single,System.Single@,System.Single@)", + "kind": "method", + "name": "GlobalPosToRegionHandle", + "static": true, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalX", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalY", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localX", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "localY", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "kind": "method", + "name": "InventoryCRC", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "creationDate", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "saleType", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "salePrice", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "creatorID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "everyoneMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nextOwnerMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.OSDToPrimList(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "OSDToPrimList", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Primitive\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.PrimListToOSD(System.Collections.Generic.List{LibreMetaverse.Primitive})", + "kind": "method", + "name": "PrimListToOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prims", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Primitive\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "kind": "method", + "name": "SafeAction", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.Action", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "actionName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "logger", + "type": "System.Action\u003CSystem.String, System.Exception\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.SplitBy(System.String,System.Int32)", + "kind": "method", + "name": "SplitBy", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "chunkLength", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.IteratorStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Helpers.\u003CSplitBy\u003Ed__5" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.StructToString(System.Object)", + "kind": "method", + "name": "StructToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Uses runtime reflection to enumerate struct fields. Not AOT-safe. Consider an explicit ToString() override instead." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.TEGlowByte(System.Single)", + "kind": "method", + "name": "TEGlowByte", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "glow", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.TEGlowFloat(System.Byte[],System.Int32)", + "kind": "method", + "name": "TEGlowFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.TEOffsetFloat(System.Byte[],System.Int32)", + "kind": "method", + "name": "TEOffsetFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.TEOffsetShort(System.Single)", + "kind": "method", + "name": "TEOffsetShort", + "static": true, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "offset", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.TERotationFloat(System.Byte[],System.Int32)", + "kind": "method", + "name": "TERotationFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.TERotationShort(System.Single)", + "kind": "method", + "name": "TERotationShort", + "static": true, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "rotation", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.ZCompressOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "ZCompressOSD", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.ZDecompressOSD(System.Byte[])", + "kind": "method", + "name": "ZDecompressOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.ZeroDecode(System.Byte[],System.Int32,System.Byte[])", + "kind": "method", + "name": "ZeroDecode", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "src", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "srclen", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Helpers.ZeroEncode(System.Byte[],System.Int32,System.Byte[])", + "kind": "method", + "name": "ZeroEncode", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "src", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "srclen", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.HomeInfo", + "namespace": "LibreMetaverse", + "name": "HomeInfo", + "signature": "LibreMetaverse.HomeInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.HomeInfo.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HomeInfo.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HomeInfo.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HomeInfo.#ctor", + "kind": "constructor", + "name": "HomeInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Http.DownloadManager", + "namespace": "LibreMetaverse.Http", + "name": "DownloadManager", + "signature": "LibreMetaverse.Http.DownloadManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "DownloadManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "kind": "method", + "name": "DownloadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "kind": "method", + "name": "DownloadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownload(LibreMetaverse.Http.DownloadRequest)", + "kind": "method", + "name": "QueueDownload", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "req", + "type": "LibreMetaverse.Http.DownloadRequest", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownload(LibreMetaverse.Http.DownloadRequest,System.Threading.CancellationToken)", + "kind": "method", + "name": "QueueDownload", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "req", + "type": "LibreMetaverse.Http.DownloadRequest", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(LibreMetaverse.Http.DownloadRequest)", + "kind": "method", + "name": "QueueDownloadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "req", + "type": "LibreMetaverse.Http.DownloadRequest", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "kind": "method", + "name": "QueueDownloadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progressCallback", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "retries", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "5" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Http.DownloadManager.ParallelDownloads", + "kind": "property", + "name": "ParallelDownloads", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Http.DownloadRequest", + "namespace": "LibreMetaverse.Http", + "name": "DownloadRequest", + "signature": "LibreMetaverse.Http.DownloadRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.Address", + "kind": "field", + "name": "Address", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.Attempt", + "kind": "field", + "name": "Attempt", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.CancellationToken", + "kind": "field", + "name": "CancellationToken", + "static": false, + "visibility": "public", + "type": "System.Threading.CancellationToken", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.CompletionTcs", + "kind": "field", + "name": "CompletionTcs", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.TaskCompletionSource\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.ContentType", + "kind": "field", + "name": "ContentType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.DownloadProgressCallback", + "kind": "field", + "name": "DownloadProgressCallback", + "static": false, + "visibility": "public", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Http.DownloadRequest.Retries", + "kind": "field", + "name": "Retries", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.DownloadRequest.#ctor(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "constructor", + "name": "DownloadRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "downloadProgressCallback", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Http.EventQueueClient", + "namespace": "LibreMetaverse.Http", + "name": "EventQueueClient", + "signature": "LibreMetaverse.Http.EventQueueClient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Http.EventQueueClient.OnConnected", + "kind": "field", + "name": "OnConnected", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Http.EventQueueClient.ConnectedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Http.EventQueueClient.OnEvent", + "kind": "field", + "name": "OnEvent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Http.EventQueueClient.EventCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.#ctor(System.Uri,LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "EventQueueClient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventQueueLocation", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.Start", + "kind": "method", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.Stop(System.Boolean)", + "kind": "method", + "name": "Stop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "immediate", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Http.EventQueueClient.Running", + "kind": "property", + "name": "Running", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Http.EventQueueClient.ConnectedCallback", + "namespace": "LibreMetaverse.Http", + "name": "ConnectedCallback", + "signature": "LibreMetaverse.Http.EventQueueClient.ConnectedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ConnectedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Http.EventQueueClient.EventCallback", + "namespace": "LibreMetaverse.Http", + "name": "EventCallback", + "signature": "LibreMetaverse.Http.EventQueueClient.EventCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.Invoke(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "EventCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.BeginInvoke(System.String,LibreMetaverse.StructuredData.OSDMap,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.Invoke(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.HttpCapsClient", + "namespace": "LibreMetaverse", + "name": "HttpCapsClient", + "signature": "LibreMetaverse.HttpCapsClient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Net.Http.HttpClient", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.HttpCapsClient.HDR_LLSD_BINARY", + "kind": "field", + "name": "HDR_LLSD_BINARY", + "static": true, + "visibility": "public", + "type": "System.Net.Http.Headers.MediaTypeHeaderValue", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HttpCapsClient.HDR_LLSD_JSON", + "kind": "field", + "name": "HDR_LLSD_JSON", + "static": true, + "visibility": "public", + "type": "System.Net.Http.Headers.MediaTypeHeaderValue", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HttpCapsClient.HDR_LLSD_XML", + "kind": "field", + "name": "HDR_LLSD_XML", + "static": true, + "visibility": "public", + "type": "System.Net.Http.Headers.MediaTypeHeaderValue", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HttpCapsClient.LLSD_BINARY", + "kind": "constant", + "name": "LLSD_BINARY", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "application/llsd\u002Bbinary" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HttpCapsClient.LLSD_JSON", + "kind": "constant", + "name": "LLSD_JSON", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "application/llsd\u002Bjson" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HttpCapsClient.LLSD_XML", + "kind": "constant", + "name": "LLSD_XML", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "application/llsd\u002Bxml" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.#ctor(System.Net.Http.HttpMessageHandler)", + "kind": "constructor", + "name": "HttpCapsClient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handler", + "type": "System.Net.Http.HttpMessageHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "DeleteAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CDeleteAsync\u003Ed__25" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "DeleteAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CDeleteAsync\u003Ed__24" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "DeleteRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "DeleteRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "GetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CGetAsync\u003Ed__7" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.GetRequestAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "GetRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CGetRequestAsync\u003Ed__8" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PatchAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CPatchAsync\u003Ed__23" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PatchAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CPatchAsync\u003Ed__22" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PatchRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PatchRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PostAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CPostAsync\u003Ed__19" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PostAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CPostAsync\u003Ed__18" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PostRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PostRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PutAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CPutAsync\u003Ed__21" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PutAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "response" + }, + { + "type": "System.String", + "value": "data" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.HttpCapsClient.\u003CPutAsync\u003Ed__20" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PutRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "PutRequestAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "contentType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.HttpCapsClient.ProgressReport", + "namespace": "LibreMetaverse", + "name": "ProgressReport", + "signature": "LibreMetaverse.HttpCapsClient.ProgressReport", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.HttpCapsClient.ProgressReport.#ctor(System.Nullable{System.Int64},System.Int64,System.Nullable{System.Double})", + "kind": "constructor", + "name": "ProgressReport", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "totalBytes", + "type": "System.Nullable\u003CSystem.Int64\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesTransferred", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "percent", + "type": "System.Nullable\u003CSystem.Double\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.BytesTransferred", + "kind": "property", + "name": "BytesTransferred", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.Percent", + "kind": "property", + "name": "Percent", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Double\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.TotalBytes", + "kind": "property", + "name": "TotalBytes", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Int64\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.IBakingTextureProvider", + "namespace": "LibreMetaverse", + "name": "IBakingTextureProvider", + "signature": "LibreMetaverse.IBakingTextureProvider", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.IBakingTextureProvider.RequestTextureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestTextureAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.IGridClient", + "namespace": "LibreMetaverse", + "name": "IGridClient", + "signature": "LibreMetaverse.IGridClient", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.IGridClient.AisClient", + "kind": "property", + "name": "AisClient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryAISClient", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Appearance", + "kind": "property", + "name": "Appearance", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AppearanceManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Assets", + "kind": "property", + "name": "Assets", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Avatars", + "kind": "property", + "name": "Avatars", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AvatarManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Directory", + "kind": "property", + "name": "Directory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Environment", + "kind": "property", + "name": "Environment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EnvironmentManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Estate", + "kind": "property", + "name": "Estate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EstateTools", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Friends", + "kind": "property", + "name": "Friends", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FriendsManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Grid", + "kind": "property", + "name": "Grid", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Groups", + "kind": "property", + "name": "Groups", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.HttpCapsClient", + "kind": "property", + "name": "HttpCapsClient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.HttpCapsClient", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.InterestList", + "kind": "property", + "name": "InterestList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InterestListManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Inventory", + "kind": "property", + "name": "Inventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Marketplace", + "kind": "property", + "name": "Marketplace", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Network", + "kind": "property", + "name": "Network", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Objects", + "kind": "property", + "name": "Objects", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ObjectManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Parcels", + "kind": "property", + "name": "Parcels", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Self", + "kind": "property", + "name": "Self", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Settings", + "kind": "property", + "name": "Settings", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Settings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Sound", + "kind": "property", + "name": "Sound", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SoundManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Stats", + "kind": "property", + "name": "Stats", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Stats.UtilizationStatistics", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Terrain", + "kind": "property", + "name": "Terrain", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TerrainManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.Throttle", + "kind": "property", + "name": "Throttle", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentThrottle", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.IGridClient.TimeProvider", + "kind": "property", + "name": "TimeProvider", + "static": false, + "visibility": "public", + "type": "System.TimeProvider", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImageCodec", + "namespace": "LibreMetaverse", + "name": "ImageCodec", + "signature": "LibreMetaverse.ImageCodec", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImageCodec.BMP", + "kind": "enum_value", + "name": "BMP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.DXT", + "kind": "enum_value", + "name": "DXT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.Invalid", + "kind": "enum_value", + "name": "Invalid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.J2C", + "kind": "enum_value", + "name": "J2C", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.JPEG", + "kind": "enum_value", + "name": "JPEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.PNG", + "kind": "enum_value", + "name": "PNG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.RGB", + "kind": "enum_value", + "name": "RGB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageCodec.TGA", + "kind": "enum_value", + "name": "TGA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageCodec", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImageDownload", + "namespace": "LibreMetaverse", + "name": "ImageDownload", + "signature": "LibreMetaverse.ImageDownload", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Transfer", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImageDownload.Codec", + "kind": "field", + "name": "Codec", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImageCodec", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageDownload.DiscardLevel", + "kind": "field", + "name": "DiscardLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageDownload.ImageType", + "kind": "field", + "name": "ImageType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImageType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageDownload.PacketCount", + "kind": "field", + "name": "PacketCount", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageDownload.PacketsSeen", + "kind": "field", + "name": "PacketsSeen", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.SortedList\u003CSystem.UInt16, System.UInt16\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageDownload.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageDownload.Simulator", + "kind": "field", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ImageDownload.#ctor", + "kind": "constructor", + "name": "ImageDownload", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImageReceiveProgressEventArgs", + "namespace": "LibreMetaverse", + "name": "ImageReceiveProgressEventArgs", + "signature": "LibreMetaverse.ImageReceiveProgressEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImageReceiveProgressEventArgs.#ctor(LibreMetaverse.UUID,System.Int32,System.Int32)", + "kind": "constructor", + "name": "ImageReceiveProgressEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "imageID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "received", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "total", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImageReceiveProgressEventArgs.ImageID", + "kind": "property", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImageReceiveProgressEventArgs.Received", + "kind": "property", + "name": "Received", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImageReceiveProgressEventArgs.Total", + "kind": "property", + "name": "Total", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImageRequest", + "namespace": "LibreMetaverse", + "name": "ImageRequest", + "signature": "LibreMetaverse.ImageRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImageRequest.DiscardLevel", + "kind": "field", + "name": "DiscardLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageRequest.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageRequest.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageRequest.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImageType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImageRequest.#ctor(LibreMetaverse.UUID,LibreMetaverse.ImageType,System.Single,System.Int32)", + "kind": "constructor", + "name": "ImageRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "imageid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ImageType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "priority", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "discardLevel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImageType", + "namespace": "LibreMetaverse", + "name": "ImageType", + "signature": "LibreMetaverse.ImageType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImageType.Baked", + "kind": "enum_value", + "name": "Baked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageType.Normal", + "kind": "enum_value", + "name": "Normal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImageType.ServerBaked", + "kind": "enum_value", + "name": "ServerBaked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImageType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImageType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Imaging.Baker", + "namespace": "LibreMetaverse.Imaging", + "name": "Baker", + "signature": "LibreMetaverse.Imaging.Baker", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Imaging.Baker.#ctor(LibreMetaverse.BakeType)", + "kind": "constructor", + "name": "Baker", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bakeType", + "type": "LibreMetaverse.BakeType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Baker.AddTexture(LibreMetaverse.AppearanceManager.TextureData)", + "kind": "method", + "name": "AddTexture", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tdata", + "type": "LibreMetaverse.AppearanceManager.TextureData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Baker.Bake", + "kind": "method", + "name": "Bake", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Baker.BakeTypeFor(LibreMetaverse.AvatarTextureIndex)", + "kind": "method", + "name": "BakeTypeFor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "LibreMetaverse.AvatarTextureIndex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Baker.LoadResourceLayer(System.String)", + "kind": "method", + "name": "LoadResourceLayer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Imaging.Baker.BakeHeight", + "kind": "property", + "name": "BakeHeight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Imaging.Baker.BakeType", + "kind": "property", + "name": "BakeType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.BakeType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Imaging.Baker.BakeWidth", + "kind": "property", + "name": "BakeWidth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Imaging.Baker.BakedTexture", + "kind": "property", + "name": "BakedTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Assets.AssetTexture", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Imaging.Baker.Textures", + "kind": "property", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.AppearanceManager.TextureData\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Imaging.ManagedImageCreator", + "namespace": "LibreMetaverse.Imaging", + "name": "ManagedImageCreator", + "signature": "LibreMetaverse.Imaging.ManagedImageCreator", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "CoreJ2K.Util.ImageCreator\u003CLibreMetaverse.Imaging.ManagedImage\u003E", + "interfaces": [ + "CoreJ2K.Util.IImageCreator" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.#ctor", + "kind": "constructor", + "name": "ManagedImageCreator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.Create(System.Int32,System.Int32,System.Int32,System.Byte[])", + "kind": "method", + "name": "Create", + "static": false, + "visibility": "public", + "type": "CoreJ2K.Util.IImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "width", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "height", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "numComponents", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.ToPortableImageSource(System.Object)", + "kind": "method", + "name": "ToPortableImageSource", + "static": false, + "visibility": "public", + "type": "CoreJ2K.j2k.image.BlkImgDataSrc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "imageObject", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Imaging.ManagedImageInterleavedExtensions", + "namespace": "LibreMetaverse.Imaging", + "name": "ManagedImageInterleavedExtensions", + "signature": "LibreMetaverse.Imaging.ManagedImageInterleavedExtensions", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImageInterleavedExtensions.ToManagedImage(CoreJ2K.Util.InterleavedImage)", + "kind": "method", + "name": "ToManagedImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "image", + "type": "CoreJ2K.Util.InterleavedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Imaging.Targa", + "namespace": "LibreMetaverse.Imaging", + "name": "Targa", + "signature": "LibreMetaverse.Imaging.Targa", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Imaging.Targa.DecodeToManagedImage(System.IO.Stream)", + "kind": "method", + "name": "DecodeToManagedImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Targa.DecodeToManagedImage(System.String)", + "kind": "method", + "name": "DecodeToManagedImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Targa.Encode(LibreMetaverse.Imaging.ManagedImage)", + "kind": "method", + "name": "Encode", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "image", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.COLLADA", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "COLLADA", + "signature": "LibreMetaverse.ImportExport.Collada14.COLLADA", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.#ctor", + "kind": "constructor", + "name": "COLLADA", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertBoolArray(System.String)", + "kind": "method", + "name": "ConvertBoolArray", + "static": true, + "visibility": "public", + "type": "System.Boolean[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertDoubleArray(System.String)", + "kind": "method", + "name": "ConvertDoubleArray", + "static": true, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Boolean[])", + "kind": "method", + "name": "ConvertFromArray", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "values", + "type": "System.Boolean[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Double[])", + "kind": "method", + "name": "ConvertFromArray", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "values", + "type": "System.Double[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Int64[])", + "kind": "method", + "name": "ConvertFromArray", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "values", + "type": "System.Int64[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.String[])", + "kind": "method", + "name": "ConvertFromArray", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "values", + "type": "System.String[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertLongArray(System.String)", + "kind": "method", + "name": "ConvertLongArray", + "static": true, + "visibility": "public", + "type": "System.Int64[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertNameArray(System.String)", + "kind": "method", + "name": "ConvertNameArray", + "static": true, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_animation_clips" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_animation_clips" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_animations" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_animations" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_cameras" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_cameras" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_controllers" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_controllers" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_effects" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_effects" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_force_fields" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_force_fields" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_geometries" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_geometries" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_images" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_images" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_lights" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_lights" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_materials" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_materials" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_nodes" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_nodes" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_physics_materials" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_physics_materials" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_physics_models" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_physics_models" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_physics_scenes" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_physics_scenes" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "library_visual_scenes" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.library_visual_scenes" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.base", + "kind": "property", + "name": "base", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Form", + "value": { + "type": "System.Xml.Schema.XmlSchemaForm", + "value": "1" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.w3.org/XML/1998/namespace" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.scene", + "kind": "property", + "name": "scene", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.COLLADAScene", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.version", + "kind": "property", + "name": "version", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.VersionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.COLLADAScene", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "COLLADAScene", + "signature": "LibreMetaverse.ImportExport.Collada14.COLLADAScene", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADAScene.#ctor", + "kind": "constructor", + "name": "COLLADAScene", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADAScene.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADAScene.instance_physics_scene", + "kind": "property", + "name": "instance_physics_scene", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_scene" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADAScene.instance_visual_scene", + "kind": "property", + "name": "instance_visual_scene", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.IDREF_array", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "IDREF_array", + "signature": "LibreMetaverse.ImportExport.Collada14.IDREF_array", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.IDREF_array.#ctor", + "kind": "constructor", + "name": "IDREF_array", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREFS" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.InputGlobal", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "InputGlobal", + "signature": "LibreMetaverse.ImportExport.Collada14.InputGlobal", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.InputGlobal.#ctor", + "kind": "constructor", + "name": "InputGlobal", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputGlobal.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputGlobal.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.InputLocal", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "InputLocal", + "signature": "LibreMetaverse.ImportExport.Collada14.InputLocal", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.InputLocal.#ctor", + "kind": "constructor", + "name": "InputLocal", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocal.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocal.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.InputLocalOffset", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "InputLocalOffset", + "signature": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.#ctor", + "kind": "constructor", + "name": "InputLocalOffset", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.offset", + "kind": "property", + "name": "offset", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.set", + "kind": "property", + "name": "set", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.setSpecified", + "kind": "property", + "name": "setSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "InstanceWithExtra", + "signature": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_camera" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.#ctor", + "kind": "constructor", + "name": "InstanceWithExtra", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.url", + "kind": "property", + "name": "url", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType1", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType2", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType3", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool1", + "kind": "enum_value", + "name": "bool1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool1x1", + "kind": "enum_value", + "name": "bool1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool1x2", + "kind": "enum_value", + "name": "bool1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool1x3", + "kind": "enum_value", + "name": "bool1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool1x4", + "kind": "enum_value", + "name": "bool1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool2x1", + "kind": "enum_value", + "name": "bool2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool2x2", + "kind": "enum_value", + "name": "bool2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool2x3", + "kind": "enum_value", + "name": "bool2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool2x4", + "kind": "enum_value", + "name": "bool2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool3x1", + "kind": "enum_value", + "name": "bool3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool3x2", + "kind": "enum_value", + "name": "bool3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool3x3", + "kind": "enum_value", + "name": "bool3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool3x4", + "kind": "enum_value", + "name": "bool3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool4x1", + "kind": "enum_value", + "name": "bool4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool4x2", + "kind": "enum_value", + "name": "bool4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool4x3", + "kind": "enum_value", + "name": "bool4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.bool4x4", + "kind": "enum_value", + "name": "bool4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.connect_param", + "kind": "enum_value", + "name": "connect_param", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed", + "kind": "enum_value", + "name": "fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed1", + "kind": "enum_value", + "name": "fixed1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed1x1", + "kind": "enum_value", + "name": "fixed1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed1x2", + "kind": "enum_value", + "name": "fixed1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed1x3", + "kind": "enum_value", + "name": "fixed1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed1x4", + "kind": "enum_value", + "name": "fixed1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed2", + "kind": "enum_value", + "name": "fixed2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed2x1", + "kind": "enum_value", + "name": "fixed2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed2x2", + "kind": "enum_value", + "name": "fixed2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed2x3", + "kind": "enum_value", + "name": "fixed2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed2x4", + "kind": "enum_value", + "name": "fixed2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed3", + "kind": "enum_value", + "name": "fixed3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed3x1", + "kind": "enum_value", + "name": "fixed3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed3x2", + "kind": "enum_value", + "name": "fixed3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed3x3", + "kind": "enum_value", + "name": "fixed3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed3x4", + "kind": "enum_value", + "name": "fixed3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed4", + "kind": "enum_value", + "name": "fixed4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed4x1", + "kind": "enum_value", + "name": "fixed4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed4x2", + "kind": "enum_value", + "name": "fixed4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed4x3", + "kind": "enum_value", + "name": "fixed4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.fixed4x4", + "kind": "enum_value", + "name": "fixed4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float1", + "kind": "enum_value", + "name": "float1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float1x1", + "kind": "enum_value", + "name": "float1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float1x2", + "kind": "enum_value", + "name": "float1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float1x3", + "kind": "enum_value", + "name": "float1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float1x4", + "kind": "enum_value", + "name": "float1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float2x1", + "kind": "enum_value", + "name": "float2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float2x3", + "kind": "enum_value", + "name": "float2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float2x4", + "kind": "enum_value", + "name": "float2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float3x1", + "kind": "enum_value", + "name": "float3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float3x2", + "kind": "enum_value", + "name": "float3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float3x4", + "kind": "enum_value", + "name": "float3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float4x1", + "kind": "enum_value", + "name": "float4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float4x2", + "kind": "enum_value", + "name": "float4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float4x3", + "kind": "enum_value", + "name": "float4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half", + "kind": "enum_value", + "name": "half", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half1", + "kind": "enum_value", + "name": "half1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half1x1", + "kind": "enum_value", + "name": "half1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half1x2", + "kind": "enum_value", + "name": "half1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half1x3", + "kind": "enum_value", + "name": "half1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half1x4", + "kind": "enum_value", + "name": "half1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half2", + "kind": "enum_value", + "name": "half2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half2x1", + "kind": "enum_value", + "name": "half2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half2x2", + "kind": "enum_value", + "name": "half2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half2x3", + "kind": "enum_value", + "name": "half2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half2x4", + "kind": "enum_value", + "name": "half2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half3", + "kind": "enum_value", + "name": "half3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half3x1", + "kind": "enum_value", + "name": "half3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half3x2", + "kind": "enum_value", + "name": "half3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half3x3", + "kind": "enum_value", + "name": "half3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half3x4", + "kind": "enum_value", + "name": "half3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half4", + "kind": "enum_value", + "name": "half4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half4x1", + "kind": "enum_value", + "name": "half4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half4x2", + "kind": "enum_value", + "name": "half4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half4x3", + "kind": "enum_value", + "name": "half4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.half4x4", + "kind": "enum_value", + "name": "half4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int1", + "kind": "enum_value", + "name": "int1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int1x1", + "kind": "enum_value", + "name": "int1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int1x2", + "kind": "enum_value", + "name": "int1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int1x3", + "kind": "enum_value", + "name": "int1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int1x4", + "kind": "enum_value", + "name": "int1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int2x1", + "kind": "enum_value", + "name": "int2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int2x2", + "kind": "enum_value", + "name": "int2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int2x3", + "kind": "enum_value", + "name": "int2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int2x4", + "kind": "enum_value", + "name": "int2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int3x1", + "kind": "enum_value", + "name": "int3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int3x2", + "kind": "enum_value", + "name": "int3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int3x3", + "kind": "enum_value", + "name": "int3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int3x4", + "kind": "enum_value", + "name": "int3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int4x1", + "kind": "enum_value", + "name": "int4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int4x2", + "kind": "enum_value", + "name": "int4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int4x3", + "kind": "enum_value", + "name": "int4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.int4x4", + "kind": "enum_value", + "name": "int4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.string", + "kind": "enum_value", + "name": "string", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "115" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3.usertype", + "kind": "enum_value", + "name": "usertype", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "value": "116" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType4", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool1", + "kind": "enum_value", + "name": "bool1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool1x1", + "kind": "enum_value", + "name": "bool1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool1x2", + "kind": "enum_value", + "name": "bool1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool1x3", + "kind": "enum_value", + "name": "bool1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool1x4", + "kind": "enum_value", + "name": "bool1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool2x1", + "kind": "enum_value", + "name": "bool2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool2x2", + "kind": "enum_value", + "name": "bool2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool2x3", + "kind": "enum_value", + "name": "bool2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool2x4", + "kind": "enum_value", + "name": "bool2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool3x1", + "kind": "enum_value", + "name": "bool3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool3x2", + "kind": "enum_value", + "name": "bool3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool3x3", + "kind": "enum_value", + "name": "bool3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool3x4", + "kind": "enum_value", + "name": "bool3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool4x1", + "kind": "enum_value", + "name": "bool4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool4x2", + "kind": "enum_value", + "name": "bool4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool4x3", + "kind": "enum_value", + "name": "bool4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.bool4x4", + "kind": "enum_value", + "name": "bool4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed", + "kind": "enum_value", + "name": "fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed1", + "kind": "enum_value", + "name": "fixed1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed1x1", + "kind": "enum_value", + "name": "fixed1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed1x2", + "kind": "enum_value", + "name": "fixed1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed1x3", + "kind": "enum_value", + "name": "fixed1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed1x4", + "kind": "enum_value", + "name": "fixed1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed2", + "kind": "enum_value", + "name": "fixed2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed2x1", + "kind": "enum_value", + "name": "fixed2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed2x2", + "kind": "enum_value", + "name": "fixed2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed2x3", + "kind": "enum_value", + "name": "fixed2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed2x4", + "kind": "enum_value", + "name": "fixed2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed3", + "kind": "enum_value", + "name": "fixed3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed3x1", + "kind": "enum_value", + "name": "fixed3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed3x2", + "kind": "enum_value", + "name": "fixed3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed3x3", + "kind": "enum_value", + "name": "fixed3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed3x4", + "kind": "enum_value", + "name": "fixed3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed4", + "kind": "enum_value", + "name": "fixed4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed4x1", + "kind": "enum_value", + "name": "fixed4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed4x2", + "kind": "enum_value", + "name": "fixed4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed4x3", + "kind": "enum_value", + "name": "fixed4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.fixed4x4", + "kind": "enum_value", + "name": "fixed4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float1", + "kind": "enum_value", + "name": "float1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float1x1", + "kind": "enum_value", + "name": "float1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float1x2", + "kind": "enum_value", + "name": "float1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float1x3", + "kind": "enum_value", + "name": "float1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float1x4", + "kind": "enum_value", + "name": "float1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float2x1", + "kind": "enum_value", + "name": "float2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float2x3", + "kind": "enum_value", + "name": "float2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float2x4", + "kind": "enum_value", + "name": "float2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float3x1", + "kind": "enum_value", + "name": "float3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float3x2", + "kind": "enum_value", + "name": "float3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float3x4", + "kind": "enum_value", + "name": "float3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float4x1", + "kind": "enum_value", + "name": "float4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float4x2", + "kind": "enum_value", + "name": "float4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float4x3", + "kind": "enum_value", + "name": "float4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half", + "kind": "enum_value", + "name": "half", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half1", + "kind": "enum_value", + "name": "half1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half1x1", + "kind": "enum_value", + "name": "half1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half1x2", + "kind": "enum_value", + "name": "half1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half1x3", + "kind": "enum_value", + "name": "half1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half1x4", + "kind": "enum_value", + "name": "half1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half2", + "kind": "enum_value", + "name": "half2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half2x1", + "kind": "enum_value", + "name": "half2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half2x2", + "kind": "enum_value", + "name": "half2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half2x3", + "kind": "enum_value", + "name": "half2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half2x4", + "kind": "enum_value", + "name": "half2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half3", + "kind": "enum_value", + "name": "half3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half3x1", + "kind": "enum_value", + "name": "half3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half3x2", + "kind": "enum_value", + "name": "half3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half3x3", + "kind": "enum_value", + "name": "half3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half3x4", + "kind": "enum_value", + "name": "half3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half4", + "kind": "enum_value", + "name": "half4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half4x1", + "kind": "enum_value", + "name": "half4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half4x2", + "kind": "enum_value", + "name": "half4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half4x3", + "kind": "enum_value", + "name": "half4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.half4x4", + "kind": "enum_value", + "name": "half4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int1", + "kind": "enum_value", + "name": "int1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int1x1", + "kind": "enum_value", + "name": "int1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int1x2", + "kind": "enum_value", + "name": "int1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int1x3", + "kind": "enum_value", + "name": "int1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int1x4", + "kind": "enum_value", + "name": "int1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int2x1", + "kind": "enum_value", + "name": "int2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int2x2", + "kind": "enum_value", + "name": "int2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int2x3", + "kind": "enum_value", + "name": "int2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int2x4", + "kind": "enum_value", + "name": "int2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int3x1", + "kind": "enum_value", + "name": "int3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int3x2", + "kind": "enum_value", + "name": "int3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int3x3", + "kind": "enum_value", + "name": "int3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int3x4", + "kind": "enum_value", + "name": "int3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int4x1", + "kind": "enum_value", + "name": "int4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int4x2", + "kind": "enum_value", + "name": "int4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int4x3", + "kind": "enum_value", + "name": "int4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.int4x4", + "kind": "enum_value", + "name": "int4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.string", + "kind": "enum_value", + "name": "string", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4.usertype", + "kind": "enum_value", + "name": "usertype", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "value": "115" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType5", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.param", + "kind": "enum_value", + "name": "param", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemChoiceType6", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool1", + "kind": "enum_value", + "name": "bool1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool1x1", + "kind": "enum_value", + "name": "bool1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool1x2", + "kind": "enum_value", + "name": "bool1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool1x3", + "kind": "enum_value", + "name": "bool1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool1x4", + "kind": "enum_value", + "name": "bool1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool2x1", + "kind": "enum_value", + "name": "bool2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool2x2", + "kind": "enum_value", + "name": "bool2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool2x3", + "kind": "enum_value", + "name": "bool2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool2x4", + "kind": "enum_value", + "name": "bool2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool3x1", + "kind": "enum_value", + "name": "bool3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool3x2", + "kind": "enum_value", + "name": "bool3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool3x3", + "kind": "enum_value", + "name": "bool3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool3x4", + "kind": "enum_value", + "name": "bool3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool4x1", + "kind": "enum_value", + "name": "bool4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool4x2", + "kind": "enum_value", + "name": "bool4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool4x3", + "kind": "enum_value", + "name": "bool4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.bool4x4", + "kind": "enum_value", + "name": "bool4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed", + "kind": "enum_value", + "name": "fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed1", + "kind": "enum_value", + "name": "fixed1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed1x1", + "kind": "enum_value", + "name": "fixed1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed1x2", + "kind": "enum_value", + "name": "fixed1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed1x3", + "kind": "enum_value", + "name": "fixed1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed1x4", + "kind": "enum_value", + "name": "fixed1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed2", + "kind": "enum_value", + "name": "fixed2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed2x1", + "kind": "enum_value", + "name": "fixed2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed2x2", + "kind": "enum_value", + "name": "fixed2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed2x3", + "kind": "enum_value", + "name": "fixed2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed2x4", + "kind": "enum_value", + "name": "fixed2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed3", + "kind": "enum_value", + "name": "fixed3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed3x1", + "kind": "enum_value", + "name": "fixed3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed3x2", + "kind": "enum_value", + "name": "fixed3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed3x3", + "kind": "enum_value", + "name": "fixed3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed3x4", + "kind": "enum_value", + "name": "fixed3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed4", + "kind": "enum_value", + "name": "fixed4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed4x1", + "kind": "enum_value", + "name": "fixed4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed4x2", + "kind": "enum_value", + "name": "fixed4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed4x3", + "kind": "enum_value", + "name": "fixed4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.fixed4x4", + "kind": "enum_value", + "name": "fixed4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float1", + "kind": "enum_value", + "name": "float1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float1x1", + "kind": "enum_value", + "name": "float1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float1x2", + "kind": "enum_value", + "name": "float1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float1x3", + "kind": "enum_value", + "name": "float1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float1x4", + "kind": "enum_value", + "name": "float1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float2x1", + "kind": "enum_value", + "name": "float2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float2x3", + "kind": "enum_value", + "name": "float2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float2x4", + "kind": "enum_value", + "name": "float2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float3x1", + "kind": "enum_value", + "name": "float3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float3x2", + "kind": "enum_value", + "name": "float3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float3x4", + "kind": "enum_value", + "name": "float3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float4x1", + "kind": "enum_value", + "name": "float4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float4x2", + "kind": "enum_value", + "name": "float4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float4x3", + "kind": "enum_value", + "name": "float4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half", + "kind": "enum_value", + "name": "half", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half1", + "kind": "enum_value", + "name": "half1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half1x1", + "kind": "enum_value", + "name": "half1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half1x2", + "kind": "enum_value", + "name": "half1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half1x3", + "kind": "enum_value", + "name": "half1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half1x4", + "kind": "enum_value", + "name": "half1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half2", + "kind": "enum_value", + "name": "half2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half2x1", + "kind": "enum_value", + "name": "half2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half2x2", + "kind": "enum_value", + "name": "half2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half2x3", + "kind": "enum_value", + "name": "half2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half2x4", + "kind": "enum_value", + "name": "half2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half3", + "kind": "enum_value", + "name": "half3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half3x1", + "kind": "enum_value", + "name": "half3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half3x2", + "kind": "enum_value", + "name": "half3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half3x3", + "kind": "enum_value", + "name": "half3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half3x4", + "kind": "enum_value", + "name": "half3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half4", + "kind": "enum_value", + "name": "half4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half4x1", + "kind": "enum_value", + "name": "half4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half4x2", + "kind": "enum_value", + "name": "half4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half4x3", + "kind": "enum_value", + "name": "half4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.half4x4", + "kind": "enum_value", + "name": "half4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int1", + "kind": "enum_value", + "name": "int1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int1x1", + "kind": "enum_value", + "name": "int1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int1x2", + "kind": "enum_value", + "name": "int1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int1x3", + "kind": "enum_value", + "name": "int1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int1x4", + "kind": "enum_value", + "name": "int1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int2x1", + "kind": "enum_value", + "name": "int2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int2x2", + "kind": "enum_value", + "name": "int2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int2x3", + "kind": "enum_value", + "name": "int2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int2x4", + "kind": "enum_value", + "name": "int2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int3x1", + "kind": "enum_value", + "name": "int3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int3x2", + "kind": "enum_value", + "name": "int3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int3x3", + "kind": "enum_value", + "name": "int3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int3x4", + "kind": "enum_value", + "name": "int3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int4x1", + "kind": "enum_value", + "name": "int4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int4x2", + "kind": "enum_value", + "name": "int4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int4x3", + "kind": "enum_value", + "name": "int4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.int4x4", + "kind": "enum_value", + "name": "int4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.param", + "kind": "enum_value", + "name": "param", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.string", + "kind": "enum_value", + "name": "string", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType.aspect_ratio", + "kind": "enum_value", + "name": "aspect_ratio", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType.xmag", + "kind": "enum_value", + "name": "xmag", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType.ymag", + "kind": "enum_value", + "name": "ymag", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType1", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1.aspect_ratio", + "kind": "enum_value", + "name": "aspect_ratio", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1.xfov", + "kind": "enum_value", + "name": "xfov", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1.yfov", + "kind": "enum_value", + "name": "yfov", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType2", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType3", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType4", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool1", + "kind": "enum_value", + "name": "bool1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool1x1", + "kind": "enum_value", + "name": "bool1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool1x2", + "kind": "enum_value", + "name": "bool1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool1x3", + "kind": "enum_value", + "name": "bool1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool1x4", + "kind": "enum_value", + "name": "bool1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool2x1", + "kind": "enum_value", + "name": "bool2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool2x2", + "kind": "enum_value", + "name": "bool2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool2x3", + "kind": "enum_value", + "name": "bool2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool2x4", + "kind": "enum_value", + "name": "bool2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool3x1", + "kind": "enum_value", + "name": "bool3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool3x2", + "kind": "enum_value", + "name": "bool3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool3x3", + "kind": "enum_value", + "name": "bool3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool3x4", + "kind": "enum_value", + "name": "bool3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool4x1", + "kind": "enum_value", + "name": "bool4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool4x2", + "kind": "enum_value", + "name": "bool4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool4x3", + "kind": "enum_value", + "name": "bool4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.bool4x4", + "kind": "enum_value", + "name": "bool4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed", + "kind": "enum_value", + "name": "fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed1", + "kind": "enum_value", + "name": "fixed1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed1x1", + "kind": "enum_value", + "name": "fixed1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed1x2", + "kind": "enum_value", + "name": "fixed1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed1x3", + "kind": "enum_value", + "name": "fixed1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed1x4", + "kind": "enum_value", + "name": "fixed1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed2", + "kind": "enum_value", + "name": "fixed2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed2x1", + "kind": "enum_value", + "name": "fixed2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed2x2", + "kind": "enum_value", + "name": "fixed2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed2x3", + "kind": "enum_value", + "name": "fixed2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed2x4", + "kind": "enum_value", + "name": "fixed2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed3", + "kind": "enum_value", + "name": "fixed3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed3x1", + "kind": "enum_value", + "name": "fixed3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed3x2", + "kind": "enum_value", + "name": "fixed3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed3x3", + "kind": "enum_value", + "name": "fixed3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed3x4", + "kind": "enum_value", + "name": "fixed3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed4", + "kind": "enum_value", + "name": "fixed4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed4x1", + "kind": "enum_value", + "name": "fixed4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed4x2", + "kind": "enum_value", + "name": "fixed4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed4x3", + "kind": "enum_value", + "name": "fixed4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.fixed4x4", + "kind": "enum_value", + "name": "fixed4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float1", + "kind": "enum_value", + "name": "float1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float1x1", + "kind": "enum_value", + "name": "float1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float1x2", + "kind": "enum_value", + "name": "float1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float1x3", + "kind": "enum_value", + "name": "float1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float1x4", + "kind": "enum_value", + "name": "float1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float2x1", + "kind": "enum_value", + "name": "float2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float2x3", + "kind": "enum_value", + "name": "float2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float2x4", + "kind": "enum_value", + "name": "float2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float3x1", + "kind": "enum_value", + "name": "float3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float3x2", + "kind": "enum_value", + "name": "float3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float3x4", + "kind": "enum_value", + "name": "float3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float4x1", + "kind": "enum_value", + "name": "float4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float4x2", + "kind": "enum_value", + "name": "float4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float4x3", + "kind": "enum_value", + "name": "float4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half", + "kind": "enum_value", + "name": "half", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half1", + "kind": "enum_value", + "name": "half1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half1x1", + "kind": "enum_value", + "name": "half1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half1x2", + "kind": "enum_value", + "name": "half1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half1x3", + "kind": "enum_value", + "name": "half1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half1x4", + "kind": "enum_value", + "name": "half1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half2", + "kind": "enum_value", + "name": "half2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half2x1", + "kind": "enum_value", + "name": "half2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half2x2", + "kind": "enum_value", + "name": "half2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half2x3", + "kind": "enum_value", + "name": "half2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half2x4", + "kind": "enum_value", + "name": "half2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half3", + "kind": "enum_value", + "name": "half3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half3x1", + "kind": "enum_value", + "name": "half3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half3x2", + "kind": "enum_value", + "name": "half3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half3x3", + "kind": "enum_value", + "name": "half3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half3x4", + "kind": "enum_value", + "name": "half3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half4", + "kind": "enum_value", + "name": "half4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half4x1", + "kind": "enum_value", + "name": "half4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half4x2", + "kind": "enum_value", + "name": "half4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half4x3", + "kind": "enum_value", + "name": "half4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.half4x4", + "kind": "enum_value", + "name": "half4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int1", + "kind": "enum_value", + "name": "int1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int1x1", + "kind": "enum_value", + "name": "int1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int1x2", + "kind": "enum_value", + "name": "int1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int1x3", + "kind": "enum_value", + "name": "int1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int1x4", + "kind": "enum_value", + "name": "int1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int2x1", + "kind": "enum_value", + "name": "int2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int2x2", + "kind": "enum_value", + "name": "int2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int2x3", + "kind": "enum_value", + "name": "int2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int2x4", + "kind": "enum_value", + "name": "int2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int3x1", + "kind": "enum_value", + "name": "int3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int3x2", + "kind": "enum_value", + "name": "int3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int3x3", + "kind": "enum_value", + "name": "int3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int3x4", + "kind": "enum_value", + "name": "int3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int4x1", + "kind": "enum_value", + "name": "int4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int4x2", + "kind": "enum_value", + "name": "int4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int4x3", + "kind": "enum_value", + "name": "int4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.int4x4", + "kind": "enum_value", + "name": "int4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.string", + "kind": "enum_value", + "name": "string", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4.usertype", + "kind": "enum_value", + "name": "usertype", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "value": "115" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType5", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool1", + "kind": "enum_value", + "name": "bool1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool1x1", + "kind": "enum_value", + "name": "bool1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool1x2", + "kind": "enum_value", + "name": "bool1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool1x3", + "kind": "enum_value", + "name": "bool1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool1x4", + "kind": "enum_value", + "name": "bool1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool2x1", + "kind": "enum_value", + "name": "bool2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool2x2", + "kind": "enum_value", + "name": "bool2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool2x3", + "kind": "enum_value", + "name": "bool2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool2x4", + "kind": "enum_value", + "name": "bool2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool3x1", + "kind": "enum_value", + "name": "bool3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool3x2", + "kind": "enum_value", + "name": "bool3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool3x3", + "kind": "enum_value", + "name": "bool3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool3x4", + "kind": "enum_value", + "name": "bool3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool4x1", + "kind": "enum_value", + "name": "bool4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool4x2", + "kind": "enum_value", + "name": "bool4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool4x3", + "kind": "enum_value", + "name": "bool4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.bool4x4", + "kind": "enum_value", + "name": "bool4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.connect_param", + "kind": "enum_value", + "name": "connect_param", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed", + "kind": "enum_value", + "name": "fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed1", + "kind": "enum_value", + "name": "fixed1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed1x1", + "kind": "enum_value", + "name": "fixed1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed1x2", + "kind": "enum_value", + "name": "fixed1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed1x3", + "kind": "enum_value", + "name": "fixed1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed1x4", + "kind": "enum_value", + "name": "fixed1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed2", + "kind": "enum_value", + "name": "fixed2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed2x1", + "kind": "enum_value", + "name": "fixed2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed2x2", + "kind": "enum_value", + "name": "fixed2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed2x3", + "kind": "enum_value", + "name": "fixed2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed2x4", + "kind": "enum_value", + "name": "fixed2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed3", + "kind": "enum_value", + "name": "fixed3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed3x1", + "kind": "enum_value", + "name": "fixed3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed3x2", + "kind": "enum_value", + "name": "fixed3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed3x3", + "kind": "enum_value", + "name": "fixed3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed3x4", + "kind": "enum_value", + "name": "fixed3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed4", + "kind": "enum_value", + "name": "fixed4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed4x1", + "kind": "enum_value", + "name": "fixed4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed4x2", + "kind": "enum_value", + "name": "fixed4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed4x3", + "kind": "enum_value", + "name": "fixed4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.fixed4x4", + "kind": "enum_value", + "name": "fixed4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float1", + "kind": "enum_value", + "name": "float1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float1x1", + "kind": "enum_value", + "name": "float1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float1x2", + "kind": "enum_value", + "name": "float1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float1x3", + "kind": "enum_value", + "name": "float1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float1x4", + "kind": "enum_value", + "name": "float1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float2x1", + "kind": "enum_value", + "name": "float2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float2x3", + "kind": "enum_value", + "name": "float2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float2x4", + "kind": "enum_value", + "name": "float2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float3x1", + "kind": "enum_value", + "name": "float3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float3x2", + "kind": "enum_value", + "name": "float3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float3x4", + "kind": "enum_value", + "name": "float3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float4x1", + "kind": "enum_value", + "name": "float4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float4x2", + "kind": "enum_value", + "name": "float4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float4x3", + "kind": "enum_value", + "name": "float4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half", + "kind": "enum_value", + "name": "half", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half1", + "kind": "enum_value", + "name": "half1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half1x1", + "kind": "enum_value", + "name": "half1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half1x2", + "kind": "enum_value", + "name": "half1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half1x3", + "kind": "enum_value", + "name": "half1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half1x4", + "kind": "enum_value", + "name": "half1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half2", + "kind": "enum_value", + "name": "half2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half2x1", + "kind": "enum_value", + "name": "half2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half2x2", + "kind": "enum_value", + "name": "half2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half2x3", + "kind": "enum_value", + "name": "half2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half2x4", + "kind": "enum_value", + "name": "half2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half3", + "kind": "enum_value", + "name": "half3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half3x1", + "kind": "enum_value", + "name": "half3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half3x2", + "kind": "enum_value", + "name": "half3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half3x3", + "kind": "enum_value", + "name": "half3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half3x4", + "kind": "enum_value", + "name": "half3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half4", + "kind": "enum_value", + "name": "half4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half4x1", + "kind": "enum_value", + "name": "half4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half4x2", + "kind": "enum_value", + "name": "half4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half4x3", + "kind": "enum_value", + "name": "half4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.half4x4", + "kind": "enum_value", + "name": "half4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int1", + "kind": "enum_value", + "name": "int1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int1x1", + "kind": "enum_value", + "name": "int1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int1x2", + "kind": "enum_value", + "name": "int1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int1x3", + "kind": "enum_value", + "name": "int1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int1x4", + "kind": "enum_value", + "name": "int1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int2x1", + "kind": "enum_value", + "name": "int2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int2x2", + "kind": "enum_value", + "name": "int2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int2x3", + "kind": "enum_value", + "name": "int2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int2x4", + "kind": "enum_value", + "name": "int2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int3x1", + "kind": "enum_value", + "name": "int3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int3x2", + "kind": "enum_value", + "name": "int3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int3x3", + "kind": "enum_value", + "name": "int3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int3x4", + "kind": "enum_value", + "name": "int3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int4x1", + "kind": "enum_value", + "name": "int4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int4x2", + "kind": "enum_value", + "name": "int4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int4x3", + "kind": "enum_value", + "name": "int4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.int4x4", + "kind": "enum_value", + "name": "int4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.setparam", + "kind": "enum_value", + "name": "setparam", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.string", + "kind": "enum_value", + "name": "string", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "115" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "116" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5.usertype", + "kind": "enum_value", + "name": "usertype", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "value": "117" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType6", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.array", + "kind": "enum_value", + "name": "array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool", + "kind": "enum_value", + "name": "bool", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool1", + "kind": "enum_value", + "name": "bool1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool1x1", + "kind": "enum_value", + "name": "bool1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool1x2", + "kind": "enum_value", + "name": "bool1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool1x3", + "kind": "enum_value", + "name": "bool1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool1x4", + "kind": "enum_value", + "name": "bool1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool2", + "kind": "enum_value", + "name": "bool2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool2x1", + "kind": "enum_value", + "name": "bool2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool2x2", + "kind": "enum_value", + "name": "bool2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool2x3", + "kind": "enum_value", + "name": "bool2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool2x4", + "kind": "enum_value", + "name": "bool2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool3", + "kind": "enum_value", + "name": "bool3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool3x1", + "kind": "enum_value", + "name": "bool3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool3x2", + "kind": "enum_value", + "name": "bool3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool3x3", + "kind": "enum_value", + "name": "bool3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool3x4", + "kind": "enum_value", + "name": "bool3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool4", + "kind": "enum_value", + "name": "bool4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool4x1", + "kind": "enum_value", + "name": "bool4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool4x2", + "kind": "enum_value", + "name": "bool4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool4x3", + "kind": "enum_value", + "name": "bool4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.bool4x4", + "kind": "enum_value", + "name": "bool4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.connect_param", + "kind": "enum_value", + "name": "connect_param", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.enum", + "kind": "enum_value", + "name": "enum", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed", + "kind": "enum_value", + "name": "fixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed1", + "kind": "enum_value", + "name": "fixed1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed1x1", + "kind": "enum_value", + "name": "fixed1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed1x2", + "kind": "enum_value", + "name": "fixed1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed1x3", + "kind": "enum_value", + "name": "fixed1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed1x4", + "kind": "enum_value", + "name": "fixed1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed2", + "kind": "enum_value", + "name": "fixed2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed2x1", + "kind": "enum_value", + "name": "fixed2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed2x2", + "kind": "enum_value", + "name": "fixed2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed2x3", + "kind": "enum_value", + "name": "fixed2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed2x4", + "kind": "enum_value", + "name": "fixed2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed3", + "kind": "enum_value", + "name": "fixed3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed3x1", + "kind": "enum_value", + "name": "fixed3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed3x2", + "kind": "enum_value", + "name": "fixed3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed3x3", + "kind": "enum_value", + "name": "fixed3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed3x4", + "kind": "enum_value", + "name": "fixed3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed4", + "kind": "enum_value", + "name": "fixed4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed4x1", + "kind": "enum_value", + "name": "fixed4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed4x2", + "kind": "enum_value", + "name": "fixed4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed4x3", + "kind": "enum_value", + "name": "fixed4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.fixed4x4", + "kind": "enum_value", + "name": "fixed4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float", + "kind": "enum_value", + "name": "float", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float1", + "kind": "enum_value", + "name": "float1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float1x1", + "kind": "enum_value", + "name": "float1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float1x2", + "kind": "enum_value", + "name": "float1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float1x3", + "kind": "enum_value", + "name": "float1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float1x4", + "kind": "enum_value", + "name": "float1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float2", + "kind": "enum_value", + "name": "float2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float2x1", + "kind": "enum_value", + "name": "float2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float2x2", + "kind": "enum_value", + "name": "float2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float2x3", + "kind": "enum_value", + "name": "float2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float2x4", + "kind": "enum_value", + "name": "float2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float3", + "kind": "enum_value", + "name": "float3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float3x1", + "kind": "enum_value", + "name": "float3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float3x2", + "kind": "enum_value", + "name": "float3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float3x3", + "kind": "enum_value", + "name": "float3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float3x4", + "kind": "enum_value", + "name": "float3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float4", + "kind": "enum_value", + "name": "float4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float4x1", + "kind": "enum_value", + "name": "float4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float4x2", + "kind": "enum_value", + "name": "float4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float4x3", + "kind": "enum_value", + "name": "float4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.float4x4", + "kind": "enum_value", + "name": "float4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half", + "kind": "enum_value", + "name": "half", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half1", + "kind": "enum_value", + "name": "half1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half1x1", + "kind": "enum_value", + "name": "half1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half1x2", + "kind": "enum_value", + "name": "half1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half1x3", + "kind": "enum_value", + "name": "half1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half1x4", + "kind": "enum_value", + "name": "half1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half2", + "kind": "enum_value", + "name": "half2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half2x1", + "kind": "enum_value", + "name": "half2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half2x2", + "kind": "enum_value", + "name": "half2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half2x3", + "kind": "enum_value", + "name": "half2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half2x4", + "kind": "enum_value", + "name": "half2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half3", + "kind": "enum_value", + "name": "half3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half3x1", + "kind": "enum_value", + "name": "half3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half3x2", + "kind": "enum_value", + "name": "half3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half3x3", + "kind": "enum_value", + "name": "half3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half3x4", + "kind": "enum_value", + "name": "half3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half4", + "kind": "enum_value", + "name": "half4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half4x1", + "kind": "enum_value", + "name": "half4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half4x2", + "kind": "enum_value", + "name": "half4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half4x3", + "kind": "enum_value", + "name": "half4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.half4x4", + "kind": "enum_value", + "name": "half4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int", + "kind": "enum_value", + "name": "int", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int1", + "kind": "enum_value", + "name": "int1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int1x1", + "kind": "enum_value", + "name": "int1x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int1x2", + "kind": "enum_value", + "name": "int1x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int1x3", + "kind": "enum_value", + "name": "int1x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int1x4", + "kind": "enum_value", + "name": "int1x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int2", + "kind": "enum_value", + "name": "int2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int2x1", + "kind": "enum_value", + "name": "int2x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int2x2", + "kind": "enum_value", + "name": "int2x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int2x3", + "kind": "enum_value", + "name": "int2x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int2x4", + "kind": "enum_value", + "name": "int2x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int3", + "kind": "enum_value", + "name": "int3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int3x1", + "kind": "enum_value", + "name": "int3x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int3x2", + "kind": "enum_value", + "name": "int3x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int3x3", + "kind": "enum_value", + "name": "int3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int3x4", + "kind": "enum_value", + "name": "int3x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int4", + "kind": "enum_value", + "name": "int4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int4x1", + "kind": "enum_value", + "name": "int4x1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int4x2", + "kind": "enum_value", + "name": "int4x2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int4x3", + "kind": "enum_value", + "name": "int4x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.int4x4", + "kind": "enum_value", + "name": "int4x4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.sampler1D", + "kind": "enum_value", + "name": "sampler1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.sampler2D", + "kind": "enum_value", + "name": "sampler2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.sampler3D", + "kind": "enum_value", + "name": "sampler3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.samplerCUBE", + "kind": "enum_value", + "name": "samplerCUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.samplerDEPTH", + "kind": "enum_value", + "name": "samplerDEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.samplerRECT", + "kind": "enum_value", + "name": "samplerRECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.string", + "kind": "enum_value", + "name": "string", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.surface", + "kind": "enum_value", + "name": "surface", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "115" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6.usertype", + "kind": "enum_value", + "name": "usertype", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "value": "116" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ItemsChoiceType7", + "signature": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IncludeInSchema", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7.lookat", + "kind": "enum_value", + "name": "lookat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7.matrix", + "kind": "enum_value", + "name": "matrix", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7.rotate", + "kind": "enum_value", + "name": "rotate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7.scale", + "kind": "enum_value", + "name": "scale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7.skew", + "kind": "enum_value", + "name": "skew", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7.translate", + "kind": "enum_value", + "name": "translate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "MorphMethodType", + "signature": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.MorphMethodType.NORMALIZED", + "kind": "enum_value", + "name": "NORMALIZED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.MorphMethodType.RELATIVE", + "kind": "enum_value", + "name": "RELATIVE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.Name_array", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "Name_array", + "signature": "LibreMetaverse.ImportExport.Collada14.Name_array", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.Name_array.#ctor", + "kind": "constructor", + "name": "Name_array", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.NodeType", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "NodeType", + "signature": "LibreMetaverse.ImportExport.Collada14.NodeType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.NodeType.JOINT", + "kind": "enum_value", + "name": "JOINT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.NodeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.NodeType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.NodeType.NODE", + "kind": "enum_value", + "name": "NODE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.NodeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.NodeType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "TargetableFloat", + "signature": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.TargetableFloat.#ctor", + "kind": "constructor", + "name": "TargetableFloat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "TargetableFloat3", + "signature": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scale" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.TargetableFloat3.#ctor", + "kind": "constructor", + "name": "TargetableFloat3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat3.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat3._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat3.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.UpAxisType", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "UpAxisType", + "signature": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.UpAxisType.X_UP", + "kind": "enum_value", + "name": "X_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.UpAxisType.Y_UP", + "kind": "enum_value", + "name": "Y_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.UpAxisType.Z_UP", + "kind": "enum_value", + "name": "Z_UP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.VersionType", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "VersionType", + "signature": "LibreMetaverse.ImportExport.Collada14.VersionType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.VersionType.Item140", + "kind": "enum_value", + "name": "Item140", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.VersionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.VersionType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlEnumAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "1.4.0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.VersionType.Item141", + "kind": "enum_value", + "name": "Item141", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.VersionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.VersionType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlEnumAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "1.4.1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.accessor", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "accessor", + "signature": "LibreMetaverse.ImportExport.Collada14.accessor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.accessor.#ctor", + "kind": "constructor", + "name": "accessor", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.offset", + "kind": "property", + "name": "offset", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.UInt64" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.param[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.stride", + "kind": "property", + "name": "stride", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.UInt64" + }, + { + "type": "System.String", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.animation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "animation", + "signature": "LibreMetaverse.ImportExport.Collada14.animation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.animation.#ctor", + "kind": "constructor", + "name": "animation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "animation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.animation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "channel" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.channel" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.sampler" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.source" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.animation_clip", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "animation_clip", + "signature": "LibreMetaverse.ImportExport.Collada14.animation_clip", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.animation_clip.#ctor", + "kind": "constructor", + "name": "animation_clip", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.end", + "kind": "property", + "name": "end", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.endSpecified", + "kind": "property", + "name": "endSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.instance_animation", + "kind": "property", + "name": "instance_animation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_animation" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.start", + "kind": "property", + "name": "start", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.asset", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "asset", + "signature": "LibreMetaverse.ImportExport.Collada14.asset", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.asset.#ctor", + "kind": "constructor", + "name": "asset", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.contributor", + "kind": "property", + "name": "contributor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.assetContributor[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "contributor" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.created", + "kind": "property", + "name": "created", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.keywords", + "kind": "property", + "name": "keywords", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.modified", + "kind": "property", + "name": "modified", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.revision", + "kind": "property", + "name": "revision", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.subject", + "kind": "property", + "name": "subject", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.title", + "kind": "property", + "name": "title", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.unit", + "kind": "property", + "name": "unit", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.assetUnit", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.up_axis", + "kind": "property", + "name": "up_axis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.UpAxisType", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.assetContributor", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "assetContributor", + "signature": "LibreMetaverse.ImportExport.Collada14.assetContributor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.assetContributor.#ctor", + "kind": "constructor", + "name": "assetContributor", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.author", + "kind": "property", + "name": "author", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.authoring_tool", + "kind": "property", + "name": "authoring_tool", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.comments", + "kind": "property", + "name": "comments", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.copyright", + "kind": "property", + "name": "copyright", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.source_data", + "kind": "property", + "name": "source_data", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.assetUnit", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "assetUnit", + "signature": "LibreMetaverse.ImportExport.Collada14.assetUnit", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.assetUnit.#ctor", + "kind": "constructor", + "name": "assetUnit", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetUnit.meter", + "kind": "property", + "name": "meter", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetUnit.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "meter" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.bind_material", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "bind_material", + "signature": "LibreMetaverse.ImportExport.Collada14.bind_material", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.bind_material.#ctor", + "kind": "constructor", + "name": "bind_material", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bind_material.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bind_material.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.param[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bind_material.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bind_material.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_material[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlArrayItemAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_material" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.bool_array", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "bool_array", + "signature": "LibreMetaverse.ImportExport.Collada14.bool_array", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.bool_array.#ctor", + "kind": "constructor", + "name": "bool_array", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Boolean[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.box", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "box", + "signature": "LibreMetaverse.ImportExport.Collada14.box", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.box.#ctor", + "kind": "constructor", + "name": "box", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.box.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.box.half_extents", + "kind": "property", + "name": "half_extents", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.camera", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "camera", + "signature": "LibreMetaverse.ImportExport.Collada14.camera", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.camera.#ctor", + "kind": "constructor", + "name": "camera", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.imager", + "kind": "property", + "name": "imager", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cameraImager", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.optics", + "kind": "property", + "name": "optics", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cameraOptics", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraImager", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cameraImager", + "signature": "LibreMetaverse.ImportExport.Collada14.cameraImager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cameraImager.#ctor", + "kind": "constructor", + "name": "cameraImager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraImager.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraImager.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOptics", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cameraOptics", + "signature": "LibreMetaverse.ImportExport.Collada14.cameraOptics", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cameraOptics.#ctor", + "kind": "constructor", + "name": "cameraOptics", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOptics.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOptics.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOptics.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cameraOpticsTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common.#ctor", + "kind": "constructor", + "name": "cameraOpticsTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "orthographic" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "perspective" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cameraOpticsTechnique_commonOrthographic", + "signature": "LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic.#ctor", + "kind": "constructor", + "name": "cameraOpticsTechnique_commonOrthographic", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "aspect_ratio" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xmag" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ymag" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic.zfar", + "kind": "property", + "name": "zfar", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic.znear", + "kind": "property", + "name": "znear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cameraOpticsTechnique_commonPerspective", + "signature": "LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective.#ctor", + "kind": "constructor", + "name": "cameraOpticsTechnique_commonPerspective", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "aspect_ratio" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xfov" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "yfov" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective.zfar", + "kind": "property", + "name": "zfar", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective.znear", + "kind": "property", + "name": "znear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.capsule", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "capsule", + "signature": "LibreMetaverse.ImportExport.Collada14.capsule", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.capsule.#ctor", + "kind": "constructor", + "name": "capsule", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.capsule.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.capsule.height", + "kind": "property", + "name": "height", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.capsule.radius", + "kind": "property", + "name": "radius", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_connect_param", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_connect_param", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_connect_param", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_connect_param.#ctor", + "kind": "constructor", + "name": "cg_connect_param", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_connect_param.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_newarray_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_newarray_type", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_newarray_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_newarray_type.#ctor", + "kind": "constructor", + "name": "cg_newarray_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newarray_type.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_newarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "connect_param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_connect_param" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "string" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "usertype" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setuser_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newarray_type.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newarray_type.length", + "kind": "property", + "name": "length", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "positiveInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_newparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_newparam", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_newparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_newparam.#ctor", + "kind": "constructor", + "name": "cg_newparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_newarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "string" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "usertype" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setuser_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.modifier", + "kind": "property", + "name": "modifier", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.modifierSpecified", + "kind": "property", + "name": "modifierSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_pipeline_stage", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage.FRAGMENT", + "kind": "enum_value", + "name": "FRAGMENT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage.VERTEX", + "kind": "enum_value", + "name": "VERTEX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_sampler1D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_sampler1D", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_sampler1D.#ctor", + "kind": "constructor", + "name": "cg_sampler1D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_sampler2D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_sampler2D", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_sampler2D.#ctor", + "kind": "constructor", + "name": "cg_sampler2D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_sampler3D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_sampler3D", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_sampler3D.#ctor", + "kind": "constructor", + "name": "cg_sampler3D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_samplerCUBE", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE.#ctor", + "kind": "constructor", + "name": "cg_samplerCUBE", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_samplerDEPTH", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH.#ctor", + "kind": "constructor", + "name": "cg_samplerDEPTH", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_samplerRECT", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_samplerRECT", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_samplerRECT.#ctor", + "kind": "constructor", + "name": "cg_samplerRECT", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setarray_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_setarray_type", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_setarray_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_setarray_type.#ctor", + "kind": "constructor", + "name": "cg_setarray_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setarray_type.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "string" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "usertype" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setuser_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setarray_type.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setarray_type.length", + "kind": "property", + "name": "length", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "positiveInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_setparam", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_setparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_setparam.#ctor", + "kind": "constructor", + "name": "cg_setparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "connect_param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_connect_param" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "string" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "usertype" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setuser_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.program", + "kind": "property", + "name": "program", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_setparam_simple", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_setparam_simple", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.#ctor", + "kind": "constructor", + "name": "cg_setparam_simple", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1", + "kind": "property", + "name": "bool1", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x1", + "kind": "property", + "name": "bool1x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x2", + "kind": "property", + "name": "bool1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x3", + "kind": "property", + "name": "bool1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x4", + "kind": "property", + "name": "bool1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x1", + "kind": "property", + "name": "bool2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x2", + "kind": "property", + "name": "bool2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x3", + "kind": "property", + "name": "bool2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x4", + "kind": "property", + "name": "bool2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x1", + "kind": "property", + "name": "bool3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x2", + "kind": "property", + "name": "bool3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x3", + "kind": "property", + "name": "bool3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x4", + "kind": "property", + "name": "bool3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x1", + "kind": "property", + "name": "bool4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x2", + "kind": "property", + "name": "bool4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x3", + "kind": "property", + "name": "bool4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x4", + "kind": "property", + "name": "bool4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.enum", + "kind": "property", + "name": "enum", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed", + "kind": "property", + "name": "fixed", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1", + "kind": "property", + "name": "fixed1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x1", + "kind": "property", + "name": "fixed1x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x2", + "kind": "property", + "name": "fixed1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x3", + "kind": "property", + "name": "fixed1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x4", + "kind": "property", + "name": "fixed1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2", + "kind": "property", + "name": "fixed2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x1", + "kind": "property", + "name": "fixed2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x2", + "kind": "property", + "name": "fixed2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x3", + "kind": "property", + "name": "fixed2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x4", + "kind": "property", + "name": "fixed2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3", + "kind": "property", + "name": "fixed3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x1", + "kind": "property", + "name": "fixed3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x2", + "kind": "property", + "name": "fixed3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x3", + "kind": "property", + "name": "fixed3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x4", + "kind": "property", + "name": "fixed3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4", + "kind": "property", + "name": "fixed4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x1", + "kind": "property", + "name": "fixed4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x2", + "kind": "property", + "name": "fixed4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x3", + "kind": "property", + "name": "fixed4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x4", + "kind": "property", + "name": "fixed4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1", + "kind": "property", + "name": "float1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x1", + "kind": "property", + "name": "float1x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x2", + "kind": "property", + "name": "float1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x3", + "kind": "property", + "name": "float1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x4", + "kind": "property", + "name": "float1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x1", + "kind": "property", + "name": "float2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x3", + "kind": "property", + "name": "float2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x4", + "kind": "property", + "name": "float2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x1", + "kind": "property", + "name": "float3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x2", + "kind": "property", + "name": "float3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x4", + "kind": "property", + "name": "float3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x1", + "kind": "property", + "name": "float4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x2", + "kind": "property", + "name": "float4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x3", + "kind": "property", + "name": "float4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half", + "kind": "property", + "name": "half", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1", + "kind": "property", + "name": "half1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x1", + "kind": "property", + "name": "half1x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x2", + "kind": "property", + "name": "half1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x3", + "kind": "property", + "name": "half1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x4", + "kind": "property", + "name": "half1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2", + "kind": "property", + "name": "half2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x1", + "kind": "property", + "name": "half2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x2", + "kind": "property", + "name": "half2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x3", + "kind": "property", + "name": "half2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x4", + "kind": "property", + "name": "half2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3", + "kind": "property", + "name": "half3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x1", + "kind": "property", + "name": "half3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x2", + "kind": "property", + "name": "half3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x3", + "kind": "property", + "name": "half3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x4", + "kind": "property", + "name": "half3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4", + "kind": "property", + "name": "half4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x1", + "kind": "property", + "name": "half4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x2", + "kind": "property", + "name": "half4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x3", + "kind": "property", + "name": "half4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x4", + "kind": "property", + "name": "half4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1", + "kind": "property", + "name": "int1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x1", + "kind": "property", + "name": "int1x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x2", + "kind": "property", + "name": "int1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x3", + "kind": "property", + "name": "int1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x4", + "kind": "property", + "name": "int1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x1", + "kind": "property", + "name": "int2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x2", + "kind": "property", + "name": "int2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x3", + "kind": "property", + "name": "int2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x4", + "kind": "property", + "name": "int2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x1", + "kind": "property", + "name": "int3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x2", + "kind": "property", + "name": "int3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x3", + "kind": "property", + "name": "int3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x4", + "kind": "property", + "name": "int3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x1", + "kind": "property", + "name": "int4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x2", + "kind": "property", + "name": "int4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x3", + "kind": "property", + "name": "int4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x4", + "kind": "property", + "name": "int4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.sampler1D", + "kind": "property", + "name": "sampler1D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.sampler2D", + "kind": "property", + "name": "sampler2D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.sampler3D", + "kind": "property", + "name": "sampler3D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.samplerCUBE", + "kind": "property", + "name": "samplerCUBE", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.samplerDEPTH", + "kind": "property", + "name": "samplerDEPTH", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.samplerRECT", + "kind": "property", + "name": "samplerRECT", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.string", + "kind": "property", + "name": "string", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_surface_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setuser_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_setuser_type", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_setuser_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.#ctor", + "kind": "constructor", + "name": "cg_setuser_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "connect_param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_connect_param" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setparam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "string" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "usertype" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setuser_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_surface_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_surface_type", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_surface_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_surface_type.#ctor", + "kind": "constructor", + "name": "cg_surface_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_type.generator", + "kind": "property", + "name": "generator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_surface_typeGenerator", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator.#ctor", + "kind": "constructor", + "name": "cg_surface_typeGenerator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_code_profile" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "include" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_include_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator.setparam", + "kind": "property", + "name": "setparam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_setparam_simple[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cg_surface_typeGeneratorName", + "signature": "LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName.#ctor", + "kind": "constructor", + "name": "cg_surface_typeGeneratorName", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.channel", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "channel", + "signature": "LibreMetaverse.ImportExport.Collada14.channel", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.channel.#ctor", + "kind": "constructor", + "name": "channel", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.channel.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.channel.target", + "kind": "property", + "name": "target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_color_or_texture_type", + "signature": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_transparent_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type.#ctor", + "kind": "constructor", + "name": "common_color_or_texture_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_color_or_texture_typeColor", + "signature": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor.#ctor", + "kind": "constructor", + "name": "common_color_or_texture_typeColor", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_color_or_texture_typeParam", + "signature": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam.#ctor", + "kind": "constructor", + "name": "common_color_or_texture_typeParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_color_or_texture_typeTexture", + "signature": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture.#ctor", + "kind": "constructor", + "name": "common_color_or_texture_typeTexture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture.texcoord", + "kind": "property", + "name": "texcoord", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture.texture", + "kind": "property", + "name": "texture", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_float_or_param_type", + "signature": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_float_or_param_type.#ctor", + "kind": "constructor", + "name": "common_float_or_param_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_type.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_float_or_param_typeFloat", + "signature": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat.#ctor", + "kind": "constructor", + "name": "common_float_or_param_typeFloat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_float_or_param_typeParam", + "signature": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam.#ctor", + "kind": "constructor", + "name": "common_float_or_param_typeParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_newparam_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_newparam_type", + "signature": "LibreMetaverse.ImportExport.Collada14.common_newparam_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_newparam_type.#ctor", + "kind": "constructor", + "name": "common_newparam_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Double" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Double" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Double" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Double" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_surface_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_transparent_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "common_transparent_type", + "signature": "LibreMetaverse.ImportExport.Collada14.common_transparent_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.common_transparent_type.#ctor", + "kind": "constructor", + "name": "common_transparent_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_transparent_type.opaque", + "kind": "property", + "name": "opaque", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.controller", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "controller", + "signature": "LibreMetaverse.ImportExport.Collada14.controller", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.controller.#ctor", + "kind": "constructor", + "name": "controller", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "morph" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.morph" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "skin" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.skin" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.convex_mesh", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "convex_mesh", + "signature": "LibreMetaverse.ImportExport.Collada14.convex_mesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.convex_mesh.#ctor", + "kind": "constructor", + "name": "convex_mesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lines" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lines" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "linestrips" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.linestrips" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygons" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.polygons" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polylist" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.polylist" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "triangles" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.triangles" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "trifans" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.trifans" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "tristrips" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.tristrips" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.convex_hull_of", + "kind": "property", + "name": "convex_hull_of", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.source[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.vertices", + "kind": "property", + "name": "vertices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.vertices", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.cylinder", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "cylinder", + "signature": "LibreMetaverse.ImportExport.Collada14.cylinder", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.cylinder.#ctor", + "kind": "constructor", + "name": "cylinder", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cylinder.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cylinder.height", + "kind": "property", + "name": "height", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.cylinder.radius", + "kind": "property", + "name": "radius", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effect", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effect", + "signature": "LibreMetaverse.ImportExport.Collada14.effect", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effect.#ctor", + "kind": "constructor", + "name": "effect", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_CG" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_COMMON" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_GLES" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_GLSL" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.image", + "kind": "property", + "name": "image", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.image[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.newparam", + "kind": "property", + "name": "newparam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_newparam_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CG", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_CG" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CG", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_code_profile" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "include" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_include_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.Items1", + "kind": "property", + "name": "Items1", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_newparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.platform", + "kind": "property", + "name": "platform", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "PC" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechnique", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechnique", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_code_profile" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "include" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_include_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.Items1", + "kind": "property", + "name": "Items1", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_newparam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_setparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.pass", + "kind": "property", + "name": "pass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "pass" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechniquePass", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechniquePass", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "alpha_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "alpha_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "auto_normal_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_equation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_equation_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_func_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_depth" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_stencil" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clip_plane" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clip_plane_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_logic_op_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_material_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cull_face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cull_face_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_bounds" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_bounds_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_clamp_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_range" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "dither_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_coord_src" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_density" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_end" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_start" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "front_face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "gl_hook_abstract" + }, + { + "type": "System.Type", + "value": "System.Object" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_constant_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_diffuse" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_linear_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_color_control" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_local_viewer_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_two_side_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_position" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_quadratic_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_specular" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_cutoff" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_direction" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_exponent" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lighting_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_stipple" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_stipple_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_width" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "logic_op" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "logic_op_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_diffuse" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_emission" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_shininess" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_specular" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "model_view_matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "multisample_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "normalize_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_distance_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_fade_threshold_size" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size_max" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size_min" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_fill_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_line_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_point_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_stipple_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "projection_matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rescale_normal_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_alpha_to_coverage_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_alpha_to_one_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_coverage_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scissor" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scissor_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shade_model" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shader" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_func_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_mask_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_op" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_op_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture1D_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture2D_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture3D_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureCUBE_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureDEPTH_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureRECT_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture_env_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture_env_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.color_clear", + "kind": "property", + "name": "color_clear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_clear" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.color_target", + "kind": "property", + "name": "color_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_colortarget_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_target" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.depth_clear", + "kind": "property", + "name": "depth_clear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_clear" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.depth_target", + "kind": "property", + "name": "depth_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_target" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.draw", + "kind": "property", + "name": "draw", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.stencil_clear", + "kind": "property", + "name": "stencil_clear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_clear" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.stencil_target", + "kind": "property", + "name": "stencil_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_target" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShader", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.bind", + "kind": "property", + "name": "bind", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bind" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.compiler_options", + "kind": "property", + "name": "compiler_options", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.compiler_target", + "kind": "property", + "name": "compiler_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.stage", + "kind": "property", + "name": "stage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.stageSpecified", + "kind": "property", + "name": "stageSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderBind", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderBind", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool1x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x1" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4x4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fixed4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half1x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half2x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half3x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x1" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "half4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int1x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x1" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4x4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "string" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind.symbol", + "kind": "property", + "name": "symbol", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderName", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_CGTechniquePassShaderName", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_COMMON", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_COMMON" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_COMMON", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_newparam_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_COMMONTechnique", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_COMMONTechnique", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blinn" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "constant" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lambert" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "phong" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.common_newparam_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_COMMONTechniqueBlinn", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_COMMONTechniqueBlinn", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.ambient", + "kind": "property", + "name": "ambient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.diffuse", + "kind": "property", + "name": "diffuse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.emission", + "kind": "property", + "name": "emission", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.index_of_refraction", + "kind": "property", + "name": "index_of_refraction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.reflective", + "kind": "property", + "name": "reflective", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.reflectivity", + "kind": "property", + "name": "reflectivity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.shininess", + "kind": "property", + "name": "shininess", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.specular", + "kind": "property", + "name": "specular", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.transparency", + "kind": "property", + "name": "transparency", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn.transparent", + "kind": "property", + "name": "transparent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_transparent_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_COMMONTechniqueConstant", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_COMMONTechniqueConstant", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.emission", + "kind": "property", + "name": "emission", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.index_of_refraction", + "kind": "property", + "name": "index_of_refraction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.reflective", + "kind": "property", + "name": "reflective", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.reflectivity", + "kind": "property", + "name": "reflectivity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.transparency", + "kind": "property", + "name": "transparency", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant.transparent", + "kind": "property", + "name": "transparent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_transparent_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_COMMONTechniqueLambert", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_COMMONTechniqueLambert", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.ambient", + "kind": "property", + "name": "ambient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.diffuse", + "kind": "property", + "name": "diffuse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.emission", + "kind": "property", + "name": "emission", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.index_of_refraction", + "kind": "property", + "name": "index_of_refraction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.reflective", + "kind": "property", + "name": "reflective", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.reflectivity", + "kind": "property", + "name": "reflectivity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.transparency", + "kind": "property", + "name": "transparency", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert.transparent", + "kind": "property", + "name": "transparent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_transparent_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_COMMONTechniquePhong", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_COMMONTechniquePhong", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.ambient", + "kind": "property", + "name": "ambient", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.diffuse", + "kind": "property", + "name": "diffuse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.emission", + "kind": "property", + "name": "emission", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.index_of_refraction", + "kind": "property", + "name": "index_of_refraction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.reflective", + "kind": "property", + "name": "reflective", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.reflectivity", + "kind": "property", + "name": "reflectivity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.shininess", + "kind": "property", + "name": "shininess", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.specular", + "kind": "property", + "name": "specular", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.transparency", + "kind": "property", + "name": "transparency", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong.transparent", + "kind": "property", + "name": "transparent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.common_transparent_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLES", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_GLES" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLES", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gles_newparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.platform", + "kind": "property", + "name": "platform", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "PC" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechnique", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechnique", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gles_newparam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.pass", + "kind": "property", + "name": "pass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "pass" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePass", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePass", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "alpha_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "alpha_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_depth" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_stencil" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clip_plane" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clip_plane_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_logic_op_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_material_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cull_face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cull_face_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_range" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "dither_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_density" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_end" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_start" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "front_face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_constant_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_diffuse" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_linear_attenutation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_two_side_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_position" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_quadratic_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_specular" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_cutoff" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_direction" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_exponent" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lighting_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_width" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "logic_op" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_diffuse" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_emission" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_shininess" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_specular" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "model_view_matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "multisample_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "normalize_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_distance_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_fade_threshold_size" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size_max" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size_min" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_fill_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "projection_matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rescale_normal_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_alpha_to_coverage_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_alpha_to_one_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_coverage_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scissor" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scissor_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shade_model" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_op" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture_pipeline" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture_pipeline_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.color_clear", + "kind": "property", + "name": "color_clear", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.color_target", + "kind": "property", + "name": "color_target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.depth_clear", + "kind": "property", + "name": "depth_clear", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.depth_clearSpecified", + "kind": "property", + "name": "depth_clearSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.depth_target", + "kind": "property", + "name": "depth_target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.draw", + "kind": "property", + "name": "draw", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.stencil_clear", + "kind": "property", + "name": "stencil_clear", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.stencil_clearSpecified", + "kind": "property", + "name": "stencil_clearSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.stencil_target", + "kind": "property", + "name": "stencil_target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func.func", + "kind": "property", + "name": "func", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func.dest", + "kind": "property", + "name": "dest", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func.src", + "kind": "property", + "name": "src", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClear_color", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClear_color", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClear_depth", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClear_depth", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.valueSpecified", + "kind": "property", + "name": "valueSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.valueSpecified", + "kind": "property", + "name": "valueSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClip_plane", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClip_plane", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassColor_mask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassColor_mask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassCull_face", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassCull_face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_range", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_range", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDither_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassDither_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_color", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_color", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_density", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_density", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_end", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_end", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_mode", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_mode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_start", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFog_start", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFront_face", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassFront_face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_position", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_position", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_specular", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_specular", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "180" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLine_width", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLine_width", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLogic_op", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassLogic_op", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "3" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_size", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_size", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassScissor", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassScissor", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassShade_model", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassShade_model", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func.func", + "kind": "property", + "name": "func", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func.mask", + "kind": "property", + "name": "mask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Int64" + }, + { + "type": "System.String", + "value": "4294967295" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_op", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_op", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op.fail", + "kind": "property", + "name": "fail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op.zfail", + "kind": "property", + "name": "zfail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op.zpass", + "kind": "property", + "name": "zpass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLESTechniqueSetparam", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLESTechniqueSetparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.enum", + "kind": "property", + "name": "enum", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x1", + "kind": "property", + "name": "float1x1", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x2", + "kind": "property", + "name": "float1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x3", + "kind": "property", + "name": "float1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x4", + "kind": "property", + "name": "float1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x1", + "kind": "property", + "name": "float2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x3", + "kind": "property", + "name": "float2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x4", + "kind": "property", + "name": "float2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x1", + "kind": "property", + "name": "float3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x2", + "kind": "property", + "name": "float3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x4", + "kind": "property", + "name": "float3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x1", + "kind": "property", + "name": "float4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x2", + "kind": "property", + "name": "float4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x3", + "kind": "property", + "name": "float4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.sampler_state", + "kind": "property", + "name": "sampler_state", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_state", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.texture_pipeline", + "kind": "property", + "name": "texture_pipeline", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.texture_unit", + "kind": "property", + "name": "texture_unit", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_unit", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSL", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "profile_GLSL" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSL", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_code_profile" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "include" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_include_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.Items1", + "kind": "property", + "name": "Items1", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_newparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechnique", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechnique", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_code_profile" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "include" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_include_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.Items1", + "kind": "property", + "name": "Items1", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.image" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "newparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_newparam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_setparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.pass", + "kind": "property", + "name": "pass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "pass" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePass", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePass", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "alpha_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "alpha_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "auto_normal_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_equation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_equation_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "blend_func_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_depth" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clear_stencil" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clip_plane" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "clip_plane_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_logic_op_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_material_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cull_face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cull_face_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_bounds" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_bounds_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_clamp_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_range" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "dither_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_coord_src" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_density" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_end" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "fog_start" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "front_face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "gl_hook_abstract" + }, + { + "type": "System.Type", + "value": "System.Object" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_constant_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_diffuse" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_linear_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_color_control" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_local_viewer_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_model_two_side_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_position" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_quadratic_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_specular" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_cutoff" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_direction" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light_spot_exponent" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lighting_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_stipple" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_stipple_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "line_width" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "logic_op" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "logic_op_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_diffuse" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_emission" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_shininess" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material_specular" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "model_view_matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "multisample_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "normalize_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_distance_attenuation" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_fade_threshold_size" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size_max" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_size_min" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_fill_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_line_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_offset_point_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_smooth_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygon_stipple_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "projection_matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rescale_normal_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_alpha_to_coverage_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_alpha_to_one_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sample_coverage_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scissor" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scissor_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shade_model" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shader" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_func" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_func_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_mask" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_mask_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_op" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_op_separate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_test_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture1D_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture2D_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture3D_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureCUBE_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureDEPTH_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "textureRECT_enable" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture_env_color" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texture_env_mode" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.color_clear", + "kind": "property", + "name": "color_clear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_clear" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.color_target", + "kind": "property", + "name": "color_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_colortarget_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "color_target" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.depth_clear", + "kind": "property", + "name": "depth_clear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_clear" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.depth_target", + "kind": "property", + "name": "depth_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "depth_target" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.draw", + "kind": "property", + "name": "draw", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.stencil_clear", + "kind": "property", + "name": "stencil_clear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_clear" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.stencil_target", + "kind": "property", + "name": "stencil_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "stencil_target" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func.func", + "kind": "property", + "name": "func", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate.alpha", + "kind": "property", + "name": "alpha", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate.rgb", + "kind": "property", + "name": "rgb", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func.dest", + "kind": "property", + "name": "dest", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func.src", + "kind": "property", + "name": "src", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate.dest_alpha", + "kind": "property", + "name": "dest_alpha", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate.dest_rgb", + "kind": "property", + "name": "dest_rgb", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate.src_alpha", + "kind": "property", + "name": "src_alpha", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate.src_rgb", + "kind": "property", + "name": "src_rgb", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClear_color", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClear_color", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Int64" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_material", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_material", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material.mode", + "kind": "property", + "name": "mode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "value": "4" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassCull_face", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassCull_face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_color", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_color", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_density", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_density", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_end", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_end", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_start", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFog_start", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFront_face", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassFront_face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_position", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_position", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "180" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_width", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLine_width", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "3" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Double", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode.mode", + "kind": "property", + "name": "mode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassScissor", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassScissor", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShade_model", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShade_model", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShader", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.bind", + "kind": "property", + "name": "bind", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bind" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.compiler_options", + "kind": "property", + "name": "compiler_options", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.compiler_target", + "kind": "property", + "name": "compiler_target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.stage", + "kind": "property", + "name": "stage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.stageSpecified", + "kind": "property", + "name": "stageSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind.symbol", + "kind": "property", + "name": "symbol", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderName", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassShaderName", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func.func", + "kind": "property", + "name": "func", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func.mask", + "kind": "property", + "name": "mask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate.back", + "kind": "property", + "name": "back", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate.front", + "kind": "property", + "name": "front", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate.mask", + "kind": "property", + "name": "mask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Int64" + }, + { + "type": "System.String", + "value": "4294967295" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate.mask", + "kind": "property", + "name": "mask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op.fail", + "kind": "property", + "name": "fail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op.zfail", + "kind": "property", + "name": "zfail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op.zpass", + "kind": "property", + "name": "zpass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate.fail", + "kind": "property", + "name": "fail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate.zfail", + "kind": "property", + "name": "zfail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate.zpass", + "kind": "property", + "name": "zpass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "value" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "value" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "value" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "value" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "value" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "param" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "value" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode", + "signature": "LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.#ctor", + "kind": "constructor", + "name": "effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.ellipsoid", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "ellipsoid", + "signature": "LibreMetaverse.ImportExport.Collada14.ellipsoid", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.ellipsoid.#ctor", + "kind": "constructor", + "name": "ellipsoid", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.ellipsoid.size", + "kind": "property", + "name": "size", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.extra", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "extra", + "signature": "LibreMetaverse.ImportExport.Collada14.extra", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.extra.#ctor", + "kind": "constructor", + "name": "extra", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.type", + "kind": "property", + "name": "type", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.float_array", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "float_array", + "signature": "LibreMetaverse.ImportExport.Collada14.float_array", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.float_array.#ctor", + "kind": "constructor", + "name": "float_array", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.digits", + "kind": "property", + "name": "digits", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Int16" + }, + { + "type": "System.String", + "value": "6" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.magnitude", + "kind": "property", + "name": "magnitude", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Int16" + }, + { + "type": "System.String", + "value": "38" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.force_field", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "force_field", + "signature": "LibreMetaverse.ImportExport.Collada14.force_field", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.force_field.#ctor", + "kind": "constructor", + "name": "force_field", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_annotate_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_annotate_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.#ctor", + "kind": "constructor", + "name": "fx_annotate_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.string", + "kind": "property", + "name": "string", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_clearcolor_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common.#ctor", + "kind": "constructor", + "name": "fx_clearcolor_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_cleardepth_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common.#ctor", + "kind": "constructor", + "name": "fx_cleardepth_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_clearstencil_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common.#ctor", + "kind": "constructor", + "name": "fx_clearstencil_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_code_profile", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_code_profile", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_code_profile", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_code_profile.#ctor", + "kind": "constructor", + "name": "fx_code_profile", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_code_profile.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_code_profile.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_colortarget_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_colortarget_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.#ctor", + "kind": "constructor", + "name": "fx_colortarget_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.mip", + "kind": "property", + "name": "mip", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.slice", + "kind": "property", + "name": "slice", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_depthtarget_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.#ctor", + "kind": "constructor", + "name": "fx_depthtarget_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.mip", + "kind": "property", + "name": "mip", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.slice", + "kind": "property", + "name": "slice", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_include_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_include_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_include_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_include_common.#ctor", + "kind": "constructor", + "name": "fx_include_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_include_common.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_include_common.url", + "kind": "property", + "name": "url", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_modifier_enum_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.CONST", + "kind": "enum_value", + "name": "CONST", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.EXTERN", + "kind": "enum_value", + "name": "EXTERN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.SHARED", + "kind": "enum_value", + "name": "SHARED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.STATIC", + "kind": "enum_value", + "name": "STATIC", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.UNIFORM", + "kind": "enum_value", + "name": "UNIFORM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.VARYING", + "kind": "enum_value", + "name": "VARYING", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common.VOLATILE", + "kind": "enum_value", + "name": "VOLATILE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_newparam_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_newparam_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_newparam_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.#ctor", + "kind": "constructor", + "name": "fx_newparam_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.enum", + "kind": "property", + "name": "enum", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x1", + "kind": "property", + "name": "float1x1", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x2", + "kind": "property", + "name": "float1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x3", + "kind": "property", + "name": "float1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x4", + "kind": "property", + "name": "float1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x1", + "kind": "property", + "name": "float2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x3", + "kind": "property", + "name": "float2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x4", + "kind": "property", + "name": "float2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x1", + "kind": "property", + "name": "float3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x2", + "kind": "property", + "name": "float3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x4", + "kind": "property", + "name": "float3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x1", + "kind": "property", + "name": "float4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x2", + "kind": "property", + "name": "float4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x3", + "kind": "property", + "name": "float4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.modifier", + "kind": "property", + "name": "modifier", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.modifierSpecified", + "kind": "property", + "name": "modifierSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.sampler1D", + "kind": "property", + "name": "sampler1D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.sampler2D", + "kind": "property", + "name": "sampler2D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.sampler3D", + "kind": "property", + "name": "sampler3D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.samplerCUBE", + "kind": "property", + "name": "samplerCUBE", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.samplerDEPTH", + "kind": "property", + "name": "samplerDEPTH", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.samplerRECT", + "kind": "property", + "name": "samplerRECT", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_opaque_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum.A_ONE", + "kind": "enum_value", + "name": "A_ONE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum.RGB_ZERO", + "kind": "enum_value", + "name": "RGB_ZERO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_sampler1D_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.#ctor", + "kind": "constructor", + "name": "fx_sampler1D_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.border_color", + "kind": "property", + "name": "border_color", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.mipfilter", + "kind": "property", + "name": "mipfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.mipmap_bias", + "kind": "property", + "name": "mipmap_bias", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.mipmap_maxlevel", + "kind": "property", + "name": "mipmap_maxlevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_sampler2D_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.#ctor", + "kind": "constructor", + "name": "fx_sampler2D_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.border_color", + "kind": "property", + "name": "border_color", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.mipfilter", + "kind": "property", + "name": "mipfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.mipmap_bias", + "kind": "property", + "name": "mipmap_bias", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.mipmap_maxlevel", + "kind": "property", + "name": "mipmap_maxlevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.wrap_t", + "kind": "property", + "name": "wrap_t", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_sampler3D_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.#ctor", + "kind": "constructor", + "name": "fx_sampler3D_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.border_color", + "kind": "property", + "name": "border_color", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.mipfilter", + "kind": "property", + "name": "mipfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.mipmap_bias", + "kind": "property", + "name": "mipmap_bias", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.mipmap_maxlevel", + "kind": "property", + "name": "mipmap_maxlevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.wrap_p", + "kind": "property", + "name": "wrap_p", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.wrap_t", + "kind": "property", + "name": "wrap_t", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_samplerCUBE_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.#ctor", + "kind": "constructor", + "name": "fx_samplerCUBE_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.border_color", + "kind": "property", + "name": "border_color", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.mipfilter", + "kind": "property", + "name": "mipfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.mipmap_bias", + "kind": "property", + "name": "mipmap_bias", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.mipmap_maxlevel", + "kind": "property", + "name": "mipmap_maxlevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.wrap_p", + "kind": "property", + "name": "wrap_p", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.wrap_t", + "kind": "property", + "name": "wrap_t", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_samplerDEPTH_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.#ctor", + "kind": "constructor", + "name": "fx_samplerDEPTH_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.wrap_t", + "kind": "property", + "name": "wrap_t", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_samplerRECT_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.#ctor", + "kind": "constructor", + "name": "fx_samplerRECT_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.border_color", + "kind": "property", + "name": "border_color", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.mipfilter", + "kind": "property", + "name": "mipfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.mipmap_bias", + "kind": "property", + "name": "mipmap_bias", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.mipmap_maxlevel", + "kind": "property", + "name": "mipmap_maxlevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.wrap_t", + "kind": "property", + "name": "wrap_t", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_sampler_filter_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.LINEAR", + "kind": "enum_value", + "name": "LINEAR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.LINEAR_MIPMAP_LINEAR", + "kind": "enum_value", + "name": "LINEAR_MIPMAP_LINEAR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.LINEAR_MIPMAP_NEAREST", + "kind": "enum_value", + "name": "LINEAR_MIPMAP_NEAREST", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.NEAREST", + "kind": "enum_value", + "name": "NEAREST", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.NEAREST_MIPMAP_LINEAR", + "kind": "enum_value", + "name": "NEAREST_MIPMAP_LINEAR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.NEAREST_MIPMAP_NEAREST", + "kind": "enum_value", + "name": "NEAREST_MIPMAP_NEAREST", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common.NONE", + "kind": "enum_value", + "name": "NONE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_sampler_wrap_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common.BORDER", + "kind": "enum_value", + "name": "BORDER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common.CLAMP", + "kind": "enum_value", + "name": "CLAMP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common.MIRROR", + "kind": "enum_value", + "name": "MIRROR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common.NONE", + "kind": "enum_value", + "name": "NONE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common.WRAP", + "kind": "enum_value", + "name": "WRAP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_stenciltarget_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.#ctor", + "kind": "constructor", + "name": "fx_stenciltarget_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.index", + "kind": "property", + "name": "index", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.mip", + "kind": "property", + "name": "mip", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.slice", + "kind": "property", + "name": "slice", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "nonNegativeInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cg_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_common.#ctor", + "kind": "constructor", + "name": "fx_surface_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "size" + }, + { + "type": "System.Type", + "value": "System.Int64" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "viewport_ratio" + }, + { + "type": "System.Type", + "value": "System.Double" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.format", + "kind": "property", + "name": "format", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.format_hint", + "kind": "property", + "name": "format_hint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_as_null", + "kind": "property", + "name": "init_as_null", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_as_target", + "kind": "property", + "name": "init_as_target", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_cube", + "kind": "property", + "name": "init_cube", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_from", + "kind": "property", + "name": "init_from", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "init_from" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_planar", + "kind": "property", + "name": "init_planar", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_volume", + "kind": "property", + "name": "init_volume", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.mip_levels", + "kind": "property", + "name": "mip_levels", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.UInt32" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.mipmap_generate", + "kind": "property", + "name": "mipmap_generate", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.mipmap_generateSpecified", + "kind": "property", + "name": "mipmap_generateSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.type", + "kind": "property", + "name": "type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_face_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum.NEGATIVE_X", + "kind": "enum_value", + "name": "NEGATIVE_X", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum.NEGATIVE_Y", + "kind": "enum_value", + "name": "NEGATIVE_Y", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum.NEGATIVE_Z", + "kind": "enum_value", + "name": "NEGATIVE_Z", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum.POSITIVE_X", + "kind": "enum_value", + "name": "POSITIVE_X", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum.POSITIVE_Y", + "kind": "enum_value", + "name": "POSITIVE_Y", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum.POSITIVE_Z", + "kind": "enum_value", + "name": "POSITIVE_Z", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_format_hint_channels_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.D", + "kind": "enum_value", + "name": "D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.L", + "kind": "enum_value", + "name": "L", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.LA", + "kind": "enum_value", + "name": "LA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.RGB", + "kind": "enum_value", + "name": "RGB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.RGBA", + "kind": "enum_value", + "name": "RGBA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.XYZ", + "kind": "enum_value", + "name": "XYZ", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum.XYZW", + "kind": "enum_value", + "name": "XYZW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_format_hint_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.#ctor", + "kind": "constructor", + "name": "fx_surface_format_hint_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.channels", + "kind": "property", + "name": "channels", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.option", + "kind": "property", + "name": "option", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "option" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.precision", + "kind": "property", + "name": "precision", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.precisionSpecified", + "kind": "property", + "name": "precisionSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.range", + "kind": "property", + "name": "range", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_format_hint_option_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum.COMPRESSABLE", + "kind": "enum_value", + "name": "COMPRESSABLE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum.NORMALIZED3", + "kind": "enum_value", + "name": "NORMALIZED3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum.NORMALIZED4", + "kind": "enum_value", + "name": "NORMALIZED4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum.SRGB_GAMMA", + "kind": "enum_value", + "name": "SRGB_GAMMA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_format_hint_precision_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum.HIGH", + "kind": "enum_value", + "name": "HIGH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum.LOW", + "kind": "enum_value", + "name": "LOW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum.MID", + "kind": "enum_value", + "name": "MID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_format_hint_range_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum.FLOAT", + "kind": "enum_value", + "name": "FLOAT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum.SINT", + "kind": "enum_value", + "name": "SINT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum.SNORM", + "kind": "enum_value", + "name": "SNORM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum.UINT", + "kind": "enum_value", + "name": "UINT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum.UNORM", + "kind": "enum_value", + "name": "UNORM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_cube_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common.#ctor", + "kind": "constructor", + "name": "fx_surface_init_cube_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "all" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "face" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "primary" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_cube_commonAll", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll.#ctor", + "kind": "constructor", + "name": "fx_surface_init_cube_commonAll", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_cube_commonFace", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace.#ctor", + "kind": "constructor", + "name": "fx_surface_init_cube_commonFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_cube_commonPrimary", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary.#ctor", + "kind": "constructor", + "name": "fx_surface_init_cube_commonPrimary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary.order", + "kind": "property", + "name": "order", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "order" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_from_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.#ctor", + "kind": "constructor", + "name": "fx_surface_init_from_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.face", + "kind": "property", + "name": "face", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.mip", + "kind": "property", + "name": "mip", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.UInt32" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.slice", + "kind": "property", + "name": "slice", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.UInt32" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_planar_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_common.#ctor", + "kind": "constructor", + "name": "fx_surface_init_planar_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "all" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_planar_commonAll", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll.#ctor", + "kind": "constructor", + "name": "fx_surface_init_planar_commonAll", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_volume_common", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common.#ctor", + "kind": "constructor", + "name": "fx_surface_init_volume_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "all" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "primary" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_volume_commonAll", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll.#ctor", + "kind": "constructor", + "name": "fx_surface_init_volume_commonAll", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_init_volume_commonPrimary", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary.#ctor", + "kind": "constructor", + "name": "fx_surface_init_volume_commonPrimary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "IDREF" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "fx_surface_type_enum", + "signature": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.CUBE", + "kind": "enum_value", + "name": "CUBE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.DEPTH", + "kind": "enum_value", + "name": "DEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.Item1D", + "kind": "enum_value", + "name": "Item1D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "1" + }, + "numeric_width": 32, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlEnumAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "1D" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.Item2D", + "kind": "enum_value", + "name": "Item2D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "2" + }, + "numeric_width": 32, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlEnumAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "2D" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.Item3D", + "kind": "enum_value", + "name": "Item3D", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "3" + }, + "numeric_width": 32, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlEnumAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "3D" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.RECT", + "kind": "enum_value", + "name": "RECT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum.UNTYPED", + "kind": "enum_value", + "name": "UNTYPED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.geometry", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "geometry", + "signature": "LibreMetaverse.ImportExport.Collada14.geometry", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.geometry.#ctor", + "kind": "constructor", + "name": "geometry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "convex_mesh" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.convex_mesh" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "mesh" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.mesh" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "spline" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.spline" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_blend_equation_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type.FUNC_ADD", + "kind": "enum_value", + "name": "FUNC_ADD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type.FUNC_REVERSE_SUBTRACT", + "kind": "enum_value", + "name": "FUNC_REVERSE_SUBTRACT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type.FUNC_SUBTRACT", + "kind": "enum_value", + "name": "FUNC_SUBTRACT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type.MAX", + "kind": "enum_value", + "name": "MAX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type.MIN", + "kind": "enum_value", + "name": "MIN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_blend_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.CONSTANT_ALPHA", + "kind": "enum_value", + "name": "CONSTANT_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.CONSTANT_COLOR", + "kind": "enum_value", + "name": "CONSTANT_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.DEST_COLOR", + "kind": "enum_value", + "name": "DEST_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.DST_ALPHA", + "kind": "enum_value", + "name": "DST_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE", + "kind": "enum_value", + "name": "ONE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE_MINUS_CONSTANT_ALPHA", + "kind": "enum_value", + "name": "ONE_MINUS_CONSTANT_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE_MINUS_CONSTANT_COLOR", + "kind": "enum_value", + "name": "ONE_MINUS_CONSTANT_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE_MINUS_DEST_COLOR", + "kind": "enum_value", + "name": "ONE_MINUS_DEST_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE_MINUS_DST_ALPHA", + "kind": "enum_value", + "name": "ONE_MINUS_DST_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE_MINUS_SRC_ALPHA", + "kind": "enum_value", + "name": "ONE_MINUS_SRC_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ONE_MINUS_SRC_COLOR", + "kind": "enum_value", + "name": "ONE_MINUS_SRC_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.SRC_ALPHA", + "kind": "enum_value", + "name": "SRC_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.SRC_ALPHA_SATURATE", + "kind": "enum_value", + "name": "SRC_ALPHA_SATURATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.SRC_COLOR", + "kind": "enum_value", + "name": "SRC_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_blend_type.ZERO", + "kind": "enum_value", + "name": "ZERO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_face_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_face_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_face_type.BACK", + "kind": "enum_value", + "name": "BACK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_face_type.FRONT", + "kind": "enum_value", + "name": "FRONT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_face_type.FRONT_AND_BACK", + "kind": "enum_value", + "name": "FRONT_AND_BACK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_face_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_fog_coord_src_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type.FOG_COORDINATE", + "kind": "enum_value", + "name": "FOG_COORDINATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type.FRAGMENT_DEPTH", + "kind": "enum_value", + "name": "FRAGMENT_DEPTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_fog_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_fog_type.EXP", + "kind": "enum_value", + "name": "EXP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_fog_type.EXP2", + "kind": "enum_value", + "name": "EXP2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_fog_type.LINEAR", + "kind": "enum_value", + "name": "LINEAR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_front_face_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_front_face_type.CCW", + "kind": "enum_value", + "name": "CCW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_front_face_type.CW", + "kind": "enum_value", + "name": "CW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_func_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_func_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.ALWAYS", + "kind": "enum_value", + "name": "ALWAYS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.EQUAL", + "kind": "enum_value", + "name": "EQUAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.GEQUAL", + "kind": "enum_value", + "name": "GEQUAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.GREATER", + "kind": "enum_value", + "name": "GREATER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.LEQUAL", + "kind": "enum_value", + "name": "LEQUAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.LESS", + "kind": "enum_value", + "name": "LESS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.NEVER", + "kind": "enum_value", + "name": "NEVER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_func_type.NOTEQUAL", + "kind": "enum_value", + "name": "NOTEQUAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_func_type", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_light_model_color_control_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type.SEPARATE_SPECULAR_COLOR", + "kind": "enum_value", + "name": "SEPARATE_SPECULAR_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type.SINGLE_COLOR", + "kind": "enum_value", + "name": "SINGLE_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_logic_op_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.AND", + "kind": "enum_value", + "name": "AND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.AND_INVERTED", + "kind": "enum_value", + "name": "AND_INVERTED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.AND_REVERSE", + "kind": "enum_value", + "name": "AND_REVERSE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.CLEAR", + "kind": "enum_value", + "name": "CLEAR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.COPY", + "kind": "enum_value", + "name": "COPY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.COPY_INVERTED", + "kind": "enum_value", + "name": "COPY_INVERTED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.EQUIV", + "kind": "enum_value", + "name": "EQUIV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.INVERT", + "kind": "enum_value", + "name": "INVERT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.NAND", + "kind": "enum_value", + "name": "NAND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.NOOP", + "kind": "enum_value", + "name": "NOOP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.NOR", + "kind": "enum_value", + "name": "NOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.OR", + "kind": "enum_value", + "name": "OR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.OR_REVERSE", + "kind": "enum_value", + "name": "OR_REVERSE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.SET", + "kind": "enum_value", + "name": "SET", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type.XOR", + "kind": "enum_value", + "name": "XOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_material_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_material_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_material_type.AMBIENT", + "kind": "enum_value", + "name": "AMBIENT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_material_type.AMBIENT_AND_DIFFUSE", + "kind": "enum_value", + "name": "AMBIENT_AND_DIFFUSE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_material_type.DIFFUSE", + "kind": "enum_value", + "name": "DIFFUSE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_material_type.EMISSION", + "kind": "enum_value", + "name": "EMISSION", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_material_type.SPECULAR", + "kind": "enum_value", + "name": "SPECULAR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_material_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_polygon_mode_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type.FILL", + "kind": "enum_value", + "name": "FILL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type.LINE", + "kind": "enum_value", + "name": "LINE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type.POINT", + "kind": "enum_value", + "name": "POINT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_sampler1D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_sampler1D", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gl_sampler1D.#ctor", + "kind": "constructor", + "name": "gl_sampler1D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_sampler2D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_sampler2D", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gl_sampler2D.#ctor", + "kind": "constructor", + "name": "gl_sampler2D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_sampler3D", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_sampler3D", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gl_sampler3D.#ctor", + "kind": "constructor", + "name": "gl_sampler3D", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_samplerCUBE", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE.#ctor", + "kind": "constructor", + "name": "gl_samplerCUBE", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_samplerDEPTH", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH.#ctor", + "kind": "constructor", + "name": "gl_samplerDEPTH", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_samplerRECT", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_samplerRECT", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gl_samplerRECT.#ctor", + "kind": "constructor", + "name": "gl_samplerRECT", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_shade_model_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type.FLAT", + "kind": "enum_value", + "name": "FLAT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type.SMOOTH", + "kind": "enum_value", + "name": "SMOOTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gl_stencil_op_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.DECR", + "kind": "enum_value", + "name": "DECR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.DECR_WRAP", + "kind": "enum_value", + "name": "DECR_WRAP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.INCR", + "kind": "enum_value", + "name": "INCR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.INCR_WRAP", + "kind": "enum_value", + "name": "INCR_WRAP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.INVERT", + "kind": "enum_value", + "name": "INVERT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.KEEP", + "kind": "enum_value", + "name": "KEEP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.REPLACE", + "kind": "enum_value", + "name": "REPLACE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type.ZERO", + "kind": "enum_value", + "name": "ZERO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_newparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_newparam", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_newparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_newparam.#ctor", + "kind": "constructor", + "name": "gles_newparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.enum", + "kind": "property", + "name": "enum", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x1", + "kind": "property", + "name": "float1x1", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x2", + "kind": "property", + "name": "float1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x3", + "kind": "property", + "name": "float1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x4", + "kind": "property", + "name": "float1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x1", + "kind": "property", + "name": "float2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x3", + "kind": "property", + "name": "float2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x4", + "kind": "property", + "name": "float2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x1", + "kind": "property", + "name": "float3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x2", + "kind": "property", + "name": "float3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x4", + "kind": "property", + "name": "float3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x1", + "kind": "property", + "name": "float4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x2", + "kind": "property", + "name": "float4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x3", + "kind": "property", + "name": "float4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.modifier", + "kind": "property", + "name": "modifier", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.modifierSpecified", + "kind": "property", + "name": "modifierSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.sampler_state", + "kind": "property", + "name": "sampler_state", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_state", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.texture_pipeline", + "kind": "property", + "name": "texture_pipeline", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.texture_unit", + "kind": "property", + "name": "texture_unit", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_unit", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_state", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_sampler_state", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_sampler_state", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.#ctor", + "kind": "constructor", + "name": "gles_sampler_state", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.magfilter", + "kind": "property", + "name": "magfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.minfilter", + "kind": "property", + "name": "minfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.mipfilter", + "kind": "property", + "name": "mipfilter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.mipmap_bias", + "kind": "property", + "name": "mipmap_bias", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Single" + }, + { + "type": "System.String", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.mipmap_maxlevel", + "kind": "property", + "name": "mipmap_maxlevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.Byte" + }, + { + "type": "System.String", + "value": "255" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.wrap_s", + "kind": "property", + "name": "wrap_s", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.wrap_t", + "kind": "property", + "name": "wrap_t", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_sampler_wrap", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap.CLAMP", + "kind": "enum_value", + "name": "CLAMP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap.CLAMP_TO_EDGE", + "kind": "enum_value", + "name": "CLAMP_TO_EDGE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap.MIRRORED_REPEAT", + "kind": "enum_value", + "name": "MIRRORED_REPEAT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap.REPEAT", + "kind": "enum_value", + "name": "REPEAT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_stencil_op_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type.DECR", + "kind": "enum_value", + "name": "DECR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type.INCR", + "kind": "enum_value", + "name": "INCR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type.INVERT", + "kind": "enum_value", + "name": "INVERT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type.KEEP", + "kind": "enum_value", + "name": "KEEP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type.REPLACE", + "kind": "enum_value", + "name": "REPLACE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type.ZERO", + "kind": "enum_value", + "name": "ZERO", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_argumentAlpha_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.#ctor", + "kind": "constructor", + "name": "gles_texcombiner_argumentAlpha_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.operand", + "kind": "property", + "name": "operand", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.sourceSpecified", + "kind": "property", + "name": "sourceSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.unit", + "kind": "property", + "name": "unit", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_argumentRGB_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.#ctor", + "kind": "constructor", + "name": "gles_texcombiner_argumentRGB_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.operand", + "kind": "property", + "name": "operand", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.sourceSpecified", + "kind": "property", + "name": "sourceSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.unit", + "kind": "property", + "name": "unit", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_commandAlpha_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.#ctor", + "kind": "constructor", + "name": "gles_texcombiner_commandAlpha_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.argument", + "kind": "property", + "name": "argument", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "argument" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.operator", + "kind": "property", + "name": "operator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.operatorSpecified", + "kind": "property", + "name": "operatorSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.scale", + "kind": "property", + "name": "scale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.scaleSpecified", + "kind": "property", + "name": "scaleSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_commandRGB_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.#ctor", + "kind": "constructor", + "name": "gles_texcombiner_commandRGB_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.argument", + "kind": "property", + "name": "argument", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "argument" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.operator", + "kind": "property", + "name": "operator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.operatorSpecified", + "kind": "property", + "name": "operatorSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.scale", + "kind": "property", + "name": "scale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.scaleSpecified", + "kind": "property", + "name": "scaleSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_command_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type.#ctor", + "kind": "constructor", + "name": "gles_texcombiner_command_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type.RGB", + "kind": "property", + "name": "RGB", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type.alpha", + "kind": "property", + "name": "alpha", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type.constant", + "kind": "property", + "name": "constant", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_operandAlpha_enums", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums.ONE_MINUS_SRC_ALPHA", + "kind": "enum_value", + "name": "ONE_MINUS_SRC_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums.SRC_ALPHA", + "kind": "enum_value", + "name": "SRC_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_operandRGB_enums", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums.ONE_MINUS_SRC_ALPHA", + "kind": "enum_value", + "name": "ONE_MINUS_SRC_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums.ONE_MINUS_SRC_COLOR", + "kind": "enum_value", + "name": "ONE_MINUS_SRC_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums.SRC_ALPHA", + "kind": "enum_value", + "name": "SRC_ALPHA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums.SRC_COLOR", + "kind": "enum_value", + "name": "SRC_COLOR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_operatorAlpha_enums", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums.ADD", + "kind": "enum_value", + "name": "ADD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums.ADD_SIGNED", + "kind": "enum_value", + "name": "ADD_SIGNED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums.INTERPOLATE", + "kind": "enum_value", + "name": "INTERPOLATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums.MODULATE", + "kind": "enum_value", + "name": "MODULATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums.REPLACE", + "kind": "enum_value", + "name": "REPLACE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums.SUBTRACT", + "kind": "enum_value", + "name": "SUBTRACT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_operatorRGB_enums", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.ADD", + "kind": "enum_value", + "name": "ADD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.ADD_SIGNED", + "kind": "enum_value", + "name": "ADD_SIGNED", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.DOT3_RGB", + "kind": "enum_value", + "name": "DOT3_RGB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.DOT3_RGBA", + "kind": "enum_value", + "name": "DOT3_RGBA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.INTERPOLATE", + "kind": "enum_value", + "name": "INTERPOLATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.MODULATE", + "kind": "enum_value", + "name": "MODULATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.REPLACE", + "kind": "enum_value", + "name": "REPLACE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums.SUBTRACT", + "kind": "enum_value", + "name": "SUBTRACT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texcombiner_source_enums", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums.CONSTANT", + "kind": "enum_value", + "name": "CONSTANT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums.PREVIOUS", + "kind": "enum_value", + "name": "PREVIOUS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums.PRIMARY", + "kind": "enum_value", + "name": "PRIMARY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums.TEXTURE", + "kind": "enum_value", + "name": "TEXTURE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texenv_command_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.#ctor", + "kind": "constructor", + "name": "gles_texenv_command_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.constant", + "kind": "property", + "name": "constant", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.operator", + "kind": "property", + "name": "operator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.operatorSpecified", + "kind": "property", + "name": "operatorSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.unit", + "kind": "property", + "name": "unit", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texenv_mode_enums", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums.ADD", + "kind": "enum_value", + "name": "ADD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums.BLEND", + "kind": "enum_value", + "name": "BLEND", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums.DECAL", + "kind": "enum_value", + "name": "DECAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums.MODULATE", + "kind": "enum_value", + "name": "MODULATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums.REPLACE", + "kind": "enum_value", + "name": "REPLACE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texture_constant_type", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type.#ctor", + "kind": "constructor", + "name": "gles_texture_constant_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type.param", + "kind": "property", + "name": "param", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type.value", + "kind": "property", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texture_pipeline", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline.#ctor", + "kind": "constructor", + "name": "gles_texture_pipeline", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.extra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texcombiner" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "texenv" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_unit", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texture_unit", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texture_unit", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.#ctor", + "kind": "constructor", + "name": "gles_texture_unit", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.sampler_state", + "kind": "property", + "name": "sampler_state", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.texcoord", + "kind": "property", + "name": "texcoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "gles_texture_unitTexcoord", + "signature": "LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord.#ctor", + "kind": "constructor", + "name": "gles_texture_unitTexcoord", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_newarray_type", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_newarray_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type.#ctor", + "kind": "constructor", + "name": "glsl_newarray_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_newarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type.length", + "kind": "property", + "name": "length", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "positiveInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_newparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_newparam", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_newparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_newparam.#ctor", + "kind": "constructor", + "name": "glsl_newparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_newarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.modifier", + "kind": "property", + "name": "modifier", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.modifierSpecified", + "kind": "property", + "name": "modifierSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_pipeline_stage", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage.FRAGMENTPROGRAM", + "kind": "enum_value", + "name": "FRAGMENTPROGRAM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage.VERTEXPROGRAM", + "kind": "enum_value", + "name": "VERTEXPROGRAM", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_setarray_type", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_setarray_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type.#ctor", + "kind": "constructor", + "name": "glsl_setarray_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_setarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type.length", + "kind": "property", + "name": "length", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "positiveInteger" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_setparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_setparam", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_setparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_setparam.#ctor", + "kind": "constructor", + "name": "glsl_setparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_setarray_type" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool2" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool3" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool4" + }, + { + "type": "System.Type", + "value": "System.Boolean" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "enum" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float2x2" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float3x3" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float4x4" + }, + { + "type": "System.Type", + "value": "System.Single" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int2" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int3" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int4" + }, + { + "type": "System.Type", + "value": "System.Int32" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler1D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler2D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sampler3D" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerCUBE" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerDEPTH" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "samplerRECT" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "surface" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.ItemElementName", + "kind": "property", + "name": "ItemElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.program", + "kind": "property", + "name": "program", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_setparam_simple", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.#ctor", + "kind": "constructor", + "name": "glsl_setparam_simple", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.enum", + "kind": "property", + "name": "enum", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.sampler1D", + "kind": "property", + "name": "sampler1D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_sampler1D", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.sampler2D", + "kind": "property", + "name": "sampler2D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_sampler2D", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.sampler3D", + "kind": "property", + "name": "sampler3D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_sampler3D", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.samplerCUBE", + "kind": "property", + "name": "samplerCUBE", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_samplerCUBE", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.samplerDEPTH", + "kind": "property", + "name": "samplerDEPTH", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_samplerDEPTH", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.samplerRECT", + "kind": "property", + "name": "samplerRECT", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.gl_samplerRECT", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_surface_type", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_surface_type", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_surface_type", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_surface_type.#ctor", + "kind": "constructor", + "name": "glsl_surface_type", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_type.generator", + "kind": "property", + "name": "generator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_surface_typeGenerator", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator.#ctor", + "kind": "constructor", + "name": "glsl_surface_typeGenerator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_code_profile" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "include" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.fx_include_common" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator.annotate", + "kind": "property", + "name": "annotate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_annotate_common[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "annotate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator.setparam", + "kind": "property", + "name": "setparam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "glsl_surface_typeGeneratorName", + "signature": "LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName.#ctor", + "kind": "constructor", + "name": "glsl_surface_typeGeneratorName", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.image", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "image", + "signature": "LibreMetaverse.ImportExport.Collada14.image", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.image.#ctor", + "kind": "constructor", + "name": "image", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "data" + }, + { + "type": "System.Type", + "value": "System.Byte[]" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "hexBinary" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "init_from" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.depth", + "kind": "property", + "name": "depth", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "System.UInt64" + }, + { + "type": "System.String", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.format", + "kind": "property", + "name": "format", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.height", + "kind": "property", + "name": "height", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.heightSpecified", + "kind": "property", + "name": "heightSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.width", + "kind": "property", + "name": "width", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.widthSpecified", + "kind": "property", + "name": "widthSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_controller", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_controller", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_controller", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_controller.#ctor", + "kind": "constructor", + "name": "instance_controller", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.bind_material", + "kind": "property", + "name": "bind_material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.bind_material", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.skeleton", + "kind": "property", + "name": "skeleton", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "skeleton" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.url", + "kind": "property", + "name": "url", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_effect", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_effect", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_effect", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_effect.#ctor", + "kind": "constructor", + "name": "instance_effect", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.setparam", + "kind": "property", + "name": "setparam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_effectSetparam[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "setparam" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.technique_hint", + "kind": "property", + "name": "technique_hint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique_hint" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.url", + "kind": "property", + "name": "url", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_effectSetparam", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_effectSetparam", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.#ctor", + "kind": "constructor", + "name": "instance_effectSetparam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool", + "kind": "property", + "name": "bool", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool2", + "kind": "property", + "name": "bool2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool3", + "kind": "property", + "name": "bool3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool4", + "kind": "property", + "name": "bool4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.enum", + "kind": "property", + "name": "enum", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float", + "kind": "property", + "name": "float", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x1", + "kind": "property", + "name": "float1x1", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x2", + "kind": "property", + "name": "float1x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x3", + "kind": "property", + "name": "float1x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x4", + "kind": "property", + "name": "float1x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2", + "kind": "property", + "name": "float2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x1", + "kind": "property", + "name": "float2x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x2", + "kind": "property", + "name": "float2x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x3", + "kind": "property", + "name": "float2x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x4", + "kind": "property", + "name": "float2x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3", + "kind": "property", + "name": "float3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x1", + "kind": "property", + "name": "float3x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x2", + "kind": "property", + "name": "float3x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x3", + "kind": "property", + "name": "float3x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x4", + "kind": "property", + "name": "float3x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4", + "kind": "property", + "name": "float4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x1", + "kind": "property", + "name": "float4x1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x2", + "kind": "property", + "name": "float4x2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x3", + "kind": "property", + "name": "float4x3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x4", + "kind": "property", + "name": "float4x4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int", + "kind": "property", + "name": "int", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int2", + "kind": "property", + "name": "int2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int3", + "kind": "property", + "name": "int3", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int4", + "kind": "property", + "name": "int4", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.sampler1D", + "kind": "property", + "name": "sampler1D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.sampler2D", + "kind": "property", + "name": "sampler2D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.sampler3D", + "kind": "property", + "name": "sampler3D", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.samplerCUBE", + "kind": "property", + "name": "samplerCUBE", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.samplerDEPTH", + "kind": "property", + "name": "samplerDEPTH", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.samplerRECT", + "kind": "property", + "name": "samplerRECT", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.surface", + "kind": "property", + "name": "surface", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_effectTechnique_hint", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.#ctor", + "kind": "constructor", + "name": "instance_effectTechnique_hint", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.platform", + "kind": "property", + "name": "platform", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.profile", + "kind": "property", + "name": "profile", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.ref", + "kind": "property", + "name": "ref", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_geometry", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_geometry", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_geometry", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_geometry.#ctor", + "kind": "constructor", + "name": "instance_geometry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.bind_material", + "kind": "property", + "name": "bind_material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.bind_material", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.url", + "kind": "property", + "name": "url", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_material", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_material", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_material", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_material.#ctor", + "kind": "constructor", + "name": "instance_material", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.bind", + "kind": "property", + "name": "bind", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_materialBind[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bind" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.bind_vertex_input", + "kind": "property", + "name": "bind_vertex_input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bind_vertex_input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.symbol", + "kind": "property", + "name": "symbol", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.target", + "kind": "property", + "name": "target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_materialBind", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_materialBind", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_materialBind", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_materialBind.#ctor", + "kind": "constructor", + "name": "instance_materialBind", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind.target", + "kind": "property", + "name": "target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_materialBind_vertex_input", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.#ctor", + "kind": "constructor", + "name": "instance_materialBind_vertex_input", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.input_semantic", + "kind": "property", + "name": "input_semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.input_set", + "kind": "property", + "name": "input_set", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.input_setSpecified", + "kind": "property", + "name": "input_setSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_physics_model", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_physics_model", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_physics_model", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_physics_model.#ctor", + "kind": "constructor", + "name": "instance_physics_model", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.instance_force_field", + "kind": "property", + "name": "instance_force_field", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_force_field" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.instance_rigid_body", + "kind": "property", + "name": "instance_rigid_body", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_rigid_body[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_rigid_body" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.instance_rigid_constraint", + "kind": "property", + "name": "instance_rigid_constraint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_rigid_constraint" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.parent", + "kind": "property", + "name": "parent", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.url", + "kind": "property", + "name": "url", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_body", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_rigid_body", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_rigid_body", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.#ctor", + "kind": "constructor", + "name": "instance_rigid_body", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.body", + "kind": "property", + "name": "body", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.target", + "kind": "property", + "name": "target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_rigid_bodyTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.#ctor", + "kind": "constructor", + "name": "instance_rigid_bodyTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.physics_material" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.angular_velocity", + "kind": "property", + "name": "angular_velocity", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0.0 0.0 0.0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.dynamic", + "kind": "property", + "name": "dynamic", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.inertia", + "kind": "property", + "name": "inertia", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.mass", + "kind": "property", + "name": "mass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.mass_frame", + "kind": "property", + "name": "mass_frame", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlArrayItemAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlArrayItemAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.shape", + "kind": "property", + "name": "shape", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shape" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.velocity", + "kind": "property", + "name": "velocity", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "0.0 0.0 0.0" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_rigid_bodyTechnique_commonDynamic", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic.#ctor", + "kind": "constructor", + "name": "instance_rigid_bodyTechnique_commonDynamic", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_rigid_bodyTechnique_commonShape", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.#ctor", + "kind": "constructor", + "name": "instance_rigid_bodyTechnique_commonShape", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.physics_material" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.Item1", + "kind": "property", + "name": "Item1", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "box" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.box" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "capsule" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.capsule" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cylinder" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cylinder" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_geometry" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.instance_geometry" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "plane" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.plane" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sphere" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.sphere" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "tapered_capsule" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.tapered_capsule" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "tapered_cylinder" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.tapered_cylinder" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.density", + "kind": "property", + "name": "density", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.hollow", + "kind": "property", + "name": "hollow", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.mass", + "kind": "property", + "name": "mass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_rigid_bodyTechnique_commonShapeHollow", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow.#ctor", + "kind": "constructor", + "name": "instance_rigid_bodyTechnique_commonShapeHollow", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "instance_rigid_constraint", + "signature": "LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.#ctor", + "kind": "constructor", + "name": "instance_rigid_constraint", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.constraint", + "kind": "property", + "name": "constraint", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.int_array", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "int_array", + "signature": "LibreMetaverse.ImportExport.Collada14.int_array", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.int_array.#ctor", + "kind": "constructor", + "name": "int_array", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Int64[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.maxInclusive", + "kind": "property", + "name": "maxInclusive", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "2147483647" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "integer" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.minInclusive", + "kind": "property", + "name": "minInclusive", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "-2147483648" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "integer" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_animation_clips", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_animation_clips", + "signature": "LibreMetaverse.ImportExport.Collada14.library_animation_clips", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_animation_clips.#ctor", + "kind": "constructor", + "name": "library_animation_clips", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.animation_clip", + "kind": "property", + "name": "animation_clip", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.animation_clip[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "animation_clip" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_animations", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_animations", + "signature": "LibreMetaverse.ImportExport.Collada14.library_animations", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_animations.#ctor", + "kind": "constructor", + "name": "library_animations", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.animation", + "kind": "property", + "name": "animation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.animation[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "animation" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_cameras", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_cameras", + "signature": "LibreMetaverse.ImportExport.Collada14.library_cameras", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_cameras.#ctor", + "kind": "constructor", + "name": "library_cameras", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.camera", + "kind": "property", + "name": "camera", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.camera[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "camera" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_controllers", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_controllers", + "signature": "LibreMetaverse.ImportExport.Collada14.library_controllers", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_controllers.#ctor", + "kind": "constructor", + "name": "library_controllers", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.controller", + "kind": "property", + "name": "controller", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.controller[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "controller" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_effects", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_effects", + "signature": "LibreMetaverse.ImportExport.Collada14.library_effects", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_effects.#ctor", + "kind": "constructor", + "name": "library_effects", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.effect", + "kind": "property", + "name": "effect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.effect[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "effect" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_force_fields", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_force_fields", + "signature": "LibreMetaverse.ImportExport.Collada14.library_force_fields", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_force_fields.#ctor", + "kind": "constructor", + "name": "library_force_fields", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.force_field", + "kind": "property", + "name": "force_field", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.force_field[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "force_field" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_geometries", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_geometries", + "signature": "LibreMetaverse.ImportExport.Collada14.library_geometries", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_geometries.#ctor", + "kind": "constructor", + "name": "library_geometries", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.geometry", + "kind": "property", + "name": "geometry", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.geometry[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "geometry" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_images", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_images", + "signature": "LibreMetaverse.ImportExport.Collada14.library_images", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_images.#ctor", + "kind": "constructor", + "name": "library_images", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.image", + "kind": "property", + "name": "image", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.image[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "image" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_lights", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_lights", + "signature": "LibreMetaverse.ImportExport.Collada14.library_lights", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_lights.#ctor", + "kind": "constructor", + "name": "library_lights", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.light", + "kind": "property", + "name": "light", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.light[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "light" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_materials", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_materials", + "signature": "LibreMetaverse.ImportExport.Collada14.library_materials", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_materials.#ctor", + "kind": "constructor", + "name": "library_materials", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.material[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "material" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_nodes", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_nodes", + "signature": "LibreMetaverse.ImportExport.Collada14.library_nodes", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_nodes.#ctor", + "kind": "constructor", + "name": "library_nodes", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.node", + "kind": "property", + "name": "node", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.node[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "node" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_physics_materials", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_physics_materials", + "signature": "LibreMetaverse.ImportExport.Collada14.library_physics_materials", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_physics_materials.#ctor", + "kind": "constructor", + "name": "library_physics_materials", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.physics_material", + "kind": "property", + "name": "physics_material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.physics_material[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_material" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_physics_models", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_physics_models", + "signature": "LibreMetaverse.ImportExport.Collada14.library_physics_models", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_physics_models.#ctor", + "kind": "constructor", + "name": "library_physics_models", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.physics_model", + "kind": "property", + "name": "physics_model", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.physics_model[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_model" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_physics_scenes", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_physics_scenes", + "signature": "LibreMetaverse.ImportExport.Collada14.library_physics_scenes", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.#ctor", + "kind": "constructor", + "name": "library_physics_scenes", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.physics_scene", + "kind": "property", + "name": "physics_scene", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.physics_scene[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_scene" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_visual_scenes", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "library_visual_scenes", + "signature": "LibreMetaverse.ImportExport.Collada14.library_visual_scenes", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.#ctor", + "kind": "constructor", + "name": "library_visual_scenes", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.visual_scene", + "kind": "property", + "name": "visual_scene", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.visual_scene[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "visual_scene" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.light", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "light", + "signature": "LibreMetaverse.ImportExport.Collada14.light", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.light.#ctor", + "kind": "constructor", + "name": "light", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.lightTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lightTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.lightTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lightTechnique_common.#ctor", + "kind": "constructor", + "name": "lightTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ambient" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonAmbient" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "directional" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonDirectional" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "point" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "spot" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonAmbient", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lightTechnique_commonAmbient", + "signature": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonAmbient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonAmbient.#ctor", + "kind": "constructor", + "name": "lightTechnique_commonAmbient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonAmbient.color", + "kind": "property", + "name": "color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonDirectional", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lightTechnique_commonDirectional", + "signature": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonDirectional", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonDirectional.#ctor", + "kind": "constructor", + "name": "lightTechnique_commonDirectional", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonDirectional.color", + "kind": "property", + "name": "color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lightTechnique_commonPoint", + "signature": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint.#ctor", + "kind": "constructor", + "name": "lightTechnique_commonPoint", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint.color", + "kind": "property", + "name": "color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint.constant_attenuation", + "kind": "property", + "name": "constant_attenuation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint.linear_attenuation", + "kind": "property", + "name": "linear_attenuation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint.quadratic_attenuation", + "kind": "property", + "name": "quadratic_attenuation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lightTechnique_commonSpot", + "signature": "LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.#ctor", + "kind": "constructor", + "name": "lightTechnique_commonSpot", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.color", + "kind": "property", + "name": "color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.constant_attenuation", + "kind": "property", + "name": "constant_attenuation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.falloff_angle", + "kind": "property", + "name": "falloff_angle", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.falloff_exponent", + "kind": "property", + "name": "falloff_exponent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.linear_attenuation", + "kind": "property", + "name": "linear_attenuation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot.quadratic_attenuation", + "kind": "property", + "name": "quadratic_attenuation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lines", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lines", + "signature": "LibreMetaverse.ImportExport.Collada14.lines", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lines.#ctor", + "kind": "constructor", + "name": "lines", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.linestrips", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "linestrips", + "signature": "LibreMetaverse.ImportExport.Collada14.linestrips", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.linestrips.#ctor", + "kind": "constructor", + "name": "linestrips", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "p" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.lookat", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "lookat", + "signature": "LibreMetaverse.ImportExport.Collada14.lookat", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.lookat.#ctor", + "kind": "constructor", + "name": "lookat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lookat.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lookat._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.lookat.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.material", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "material", + "signature": "LibreMetaverse.ImportExport.Collada14.material", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.material.#ctor", + "kind": "constructor", + "name": "material", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.instance_effect", + "kind": "property", + "name": "instance_effect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_effect", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.matrix", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "matrix", + "signature": "LibreMetaverse.ImportExport.Collada14.matrix", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.matrix.#ctor", + "kind": "constructor", + "name": "matrix", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.matrix.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.matrix._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.matrix.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.mesh", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "mesh", + "signature": "LibreMetaverse.ImportExport.Collada14.mesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.mesh.#ctor", + "kind": "constructor", + "name": "mesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.mesh.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lines" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lines" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "linestrips" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.linestrips" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polygons" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.polygons" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "polylist" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.polylist" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "triangles" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.triangles" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "trifans" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.trifans" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "tristrips" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.tristrips" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.mesh.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.mesh.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.source[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.mesh.vertices", + "kind": "property", + "name": "vertices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.vertices", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.morph", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "morph", + "signature": "LibreMetaverse.ImportExport.Collada14.morph", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.morph.#ctor", + "kind": "constructor", + "name": "morph", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morph.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morph.method", + "kind": "property", + "name": "method", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morph.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.source[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morph.source1", + "kind": "property", + "name": "source1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morph.targets", + "kind": "property", + "name": "targets", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.morphTargets", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.morphTargets", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "morphTargets", + "signature": "LibreMetaverse.ImportExport.Collada14.morphTargets", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.morphTargets.#ctor", + "kind": "constructor", + "name": "morphTargets", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morphTargets.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.morphTargets.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocal[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.node", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "node", + "signature": "LibreMetaverse.ImportExport.Collada14.node", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.node.#ctor", + "kind": "constructor", + "name": "node", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlChoiceIdentifierAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "lookat" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.lookat" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "matrix" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.matrix" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "scale" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "skew" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.skew" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.ItemsElementName", + "kind": "property", + "name": "ItemsElementName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ItemsElementName" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.instance_camera", + "kind": "property", + "name": "instance_camera", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_camera" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.instance_controller", + "kind": "property", + "name": "instance_controller", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_controller[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_controller" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.instance_geometry", + "kind": "property", + "name": "instance_geometry", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_geometry[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_geometry" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.instance_light", + "kind": "property", + "name": "instance_light", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_light" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.instance_node", + "kind": "property", + "name": "instance_node", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_node" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.layer", + "kind": "property", + "name": "layer", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "Name" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.node1", + "kind": "property", + "name": "node1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.node[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "node" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.type", + "kind": "property", + "name": "type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.NodeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "LibreMetaverse.ImportExport.Collada14.NodeType", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.param", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "param", + "signature": "LibreMetaverse.ImportExport.Collada14.param", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.param.#ctor", + "kind": "constructor", + "name": "param", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.semantic", + "kind": "property", + "name": "semantic", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.type", + "kind": "property", + "name": "type", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_material", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "physics_material", + "signature": "LibreMetaverse.ImportExport.Collada14.physics_material", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.physics_material.#ctor", + "kind": "constructor", + "name": "physics_material", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "physics_materialTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common.#ctor", + "kind": "constructor", + "name": "physics_materialTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common.dynamic_friction", + "kind": "property", + "name": "dynamic_friction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common.restitution", + "kind": "property", + "name": "restitution", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common.static_friction", + "kind": "property", + "name": "static_friction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_model", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "physics_model", + "signature": "LibreMetaverse.ImportExport.Collada14.physics_model", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.physics_model.#ctor", + "kind": "constructor", + "name": "physics_model", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.instance_physics_model", + "kind": "property", + "name": "instance_physics_model", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_physics_model[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_model" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.rigid_body", + "kind": "property", + "name": "rigid_body", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_body[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rigid_body" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.rigid_constraint", + "kind": "property", + "name": "rigid_constraint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraint[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rigid_constraint" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_scene", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "physics_scene", + "signature": "LibreMetaverse.ImportExport.Collada14.physics_scene", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.physics_scene.#ctor", + "kind": "constructor", + "name": "physics_scene", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.instance_force_field", + "kind": "property", + "name": "instance_force_field", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_force_field" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.instance_physics_model", + "kind": "property", + "name": "instance_physics_model", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_physics_model[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_model" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "physics_sceneTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common.#ctor", + "kind": "constructor", + "name": "physics_sceneTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common.gravity", + "kind": "property", + "name": "gravity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common.time_step", + "kind": "property", + "name": "time_step", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.plane", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "plane", + "signature": "LibreMetaverse.ImportExport.Collada14.plane", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.plane.#ctor", + "kind": "constructor", + "name": "plane", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.plane.equation", + "kind": "property", + "name": "equation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.plane.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.polygons", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "polygons", + "signature": "LibreMetaverse.ImportExport.Collada14.polygons", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.polygons.#ctor", + "kind": "constructor", + "name": "polygons", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "p" + }, + { + "type": "System.Type", + "value": "System.String" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ph" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.polygonsPH" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.polygonsPH", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "polygonsPH", + "signature": "LibreMetaverse.ImportExport.Collada14.polygonsPH", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.polygonsPH.#ctor", + "kind": "constructor", + "name": "polygonsPH", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygonsPH.h", + "kind": "property", + "name": "h", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "h" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygonsPH.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.polylist", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "polylist", + "signature": "LibreMetaverse.ImportExport.Collada14.polylist", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.polylist.#ctor", + "kind": "constructor", + "name": "polylist", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.vcount", + "kind": "property", + "name": "vcount", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_body", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_body", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_body", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_body.#ctor", + "kind": "constructor", + "name": "rigid_body", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_bodyTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.#ctor", + "kind": "constructor", + "name": "rigid_bodyTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.physics_material" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.dynamic", + "kind": "property", + "name": "dynamic", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.inertia", + "kind": "property", + "name": "inertia", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.mass", + "kind": "property", + "name": "mass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.mass_frame", + "kind": "property", + "name": "mass_frame", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlArrayItemAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlArrayItemAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.shape", + "kind": "property", + "name": "shape", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "shape" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_bodyTechnique_commonDynamic", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic.#ctor", + "kind": "constructor", + "name": "rigid_bodyTechnique_commonDynamic", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_bodyTechnique_commonShape", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.#ctor", + "kind": "constructor", + "name": "rigid_bodyTechnique_commonShape", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.InstanceWithExtra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "physics_material" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.physics_material" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.Item1", + "kind": "property", + "name": "Item1", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "box" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.box" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "capsule" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.capsule" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "cylinder" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.cylinder" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "instance_geometry" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.instance_geometry" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "plane" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.plane" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "sphere" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.sphere" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "tapered_capsule" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.tapered_capsule" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "tapered_cylinder" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.tapered_cylinder" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.density", + "kind": "property", + "name": "density", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.hollow", + "kind": "property", + "name": "hollow", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.mass", + "kind": "property", + "name": "mass", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_bodyTechnique_commonShapeHollow", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow.#ctor", + "kind": "constructor", + "name": "rigid_bodyTechnique_commonShapeHollow", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraint", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraint", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraint", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraint.#ctor", + "kind": "constructor", + "name": "rigid_constraint", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.attachment", + "kind": "property", + "name": "attachment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.ref_attachment", + "kind": "property", + "name": "ref_attachment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintAttachment", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment.#ctor", + "kind": "constructor", + "name": "rigid_constraintAttachment", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.extra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment.rigid_body", + "kind": "property", + "name": "rigid_body", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintRef_attachment", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment.#ctor", + "kind": "constructor", + "name": "rigid_constraintRef_attachment", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Object[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.extra" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "rotate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.rotate" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "translate" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment.rigid_body", + "kind": "property", + "name": "rigid_body", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common.enabled", + "kind": "property", + "name": "enabled", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common.interpenetrate", + "kind": "property", + "name": "interpenetrate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common.limits", + "kind": "property", + "name": "limits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common.spring", + "kind": "property", + "name": "spring", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonEnabled", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonEnabled", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonInterpenetrate", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonInterpenetrate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate.Value", + "kind": "property", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonLimits", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonLimits", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits.linear", + "kind": "property", + "name": "linear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits.swing_cone_and_twist", + "kind": "property", + "name": "swing_cone_and_twist", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonLimitsLinear", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonLimitsLinear", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear.max", + "kind": "property", + "name": "max", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear.min", + "kind": "property", + "name": "min", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonLimitsSwing_cone_and_twist", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonLimitsSwing_cone_and_twist", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist.max", + "kind": "property", + "name": "max", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist.min", + "kind": "property", + "name": "min", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonSpring", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonSpring", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring.angular", + "kind": "property", + "name": "angular", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring.linear", + "kind": "property", + "name": "linear", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonSpringAngular", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonSpringAngular", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular.damping", + "kind": "property", + "name": "damping", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular.stiffness", + "kind": "property", + "name": "stiffness", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular.target_value", + "kind": "property", + "name": "target_value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rigid_constraintTechnique_commonSpringLinear", + "signature": "LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear.#ctor", + "kind": "constructor", + "name": "rigid_constraintTechnique_commonSpringLinear", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear.damping", + "kind": "property", + "name": "damping", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear.stiffness", + "kind": "property", + "name": "stiffness", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear.target_value", + "kind": "property", + "name": "target_value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.rotate", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "rotate", + "signature": "LibreMetaverse.ImportExport.Collada14.rotate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.rotate.#ctor", + "kind": "constructor", + "name": "rotate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rotate.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rotate._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.rotate.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.sampler", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "sampler", + "signature": "LibreMetaverse.ImportExport.Collada14.sampler", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.sampler.#ctor", + "kind": "constructor", + "name": "sampler", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.sampler.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.sampler.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocal[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.skew", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "skew", + "signature": "LibreMetaverse.ImportExport.Collada14.skew", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.skew.#ctor", + "kind": "constructor", + "name": "skew", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skew.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Double[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skew._Text_", + "kind": "property", + "name": "_Text_", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlTextAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skew.sid", + "kind": "property", + "name": "sid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.skin", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "skin", + "signature": "LibreMetaverse.ImportExport.Collada14.skin", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.skin.#ctor", + "kind": "constructor", + "name": "skin", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.bind_shape_matrix", + "kind": "property", + "name": "bind_shape_matrix", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.joints", + "kind": "property", + "name": "joints", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.skinJoints", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.source[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.source1", + "kind": "property", + "name": "source1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.vertex_weights", + "kind": "property", + "name": "vertex_weights", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.skinVertex_weights", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.skinJoints", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "skinJoints", + "signature": "LibreMetaverse.ImportExport.Collada14.skinJoints", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.skinJoints.#ctor", + "kind": "constructor", + "name": "skinJoints", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinJoints.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinJoints.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocal[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.skinVertex_weights", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "skinVertex_weights", + "signature": "LibreMetaverse.ImportExport.Collada14.skinVertex_weights", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.#ctor", + "kind": "constructor", + "name": "skinVertex_weights", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.v", + "kind": "property", + "name": "v", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.vcount", + "kind": "property", + "name": "vcount", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.source", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "source", + "signature": "LibreMetaverse.ImportExport.Collada14.source", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.source.#ctor", + "kind": "constructor", + "name": "source", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "IDREF_array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.IDREF_array" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Name_array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.Name_array" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bool_array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.bool_array" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "float_array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.float_array" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "int_array" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.Collada14.int_array" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.technique", + "kind": "property", + "name": "technique", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.technique[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "technique" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.technique_common", + "kind": "property", + "name": "technique_common", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.sourceTechnique_common", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.sourceTechnique_common", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "sourceTechnique_common", + "signature": "LibreMetaverse.ImportExport.Collada14.sourceTechnique_common", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.sourceTechnique_common.#ctor", + "kind": "constructor", + "name": "sourceTechnique_common", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.sourceTechnique_common.accessor", + "kind": "property", + "name": "accessor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.accessor", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.sphere", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "sphere", + "signature": "LibreMetaverse.ImportExport.Collada14.sphere", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.sphere.#ctor", + "kind": "constructor", + "name": "sphere", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.sphere.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.sphere.radius", + "kind": "property", + "name": "radius", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.spline", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "spline", + "signature": "LibreMetaverse.ImportExport.Collada14.spline", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.spline.#ctor", + "kind": "constructor", + "name": "spline", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.spline.closed", + "kind": "property", + "name": "closed", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.ComponentModel.DefaultValueAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.spline.control_vertices", + "kind": "property", + "name": "control_vertices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.splineControl_vertices", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.spline.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.spline.source", + "kind": "property", + "name": "source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.source[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "source" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.splineControl_vertices", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "splineControl_vertices", + "signature": "LibreMetaverse.ImportExport.Collada14.splineControl_vertices", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.splineControl_vertices.#ctor", + "kind": "constructor", + "name": "splineControl_vertices", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.splineControl_vertices.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.splineControl_vertices.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocal[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.tapered_capsule", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "tapered_capsule", + "signature": "LibreMetaverse.ImportExport.Collada14.tapered_capsule", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.tapered_capsule.#ctor", + "kind": "constructor", + "name": "tapered_capsule", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.height", + "kind": "property", + "name": "height", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.radius1", + "kind": "property", + "name": "radius1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.radius2", + "kind": "property", + "name": "radius2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.tapered_cylinder", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "tapered_cylinder", + "signature": "LibreMetaverse.ImportExport.Collada14.tapered_cylinder", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.#ctor", + "kind": "constructor", + "name": "tapered_cylinder", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.height", + "kind": "property", + "name": "height", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.radius1", + "kind": "property", + "name": "radius1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.radius2", + "kind": "property", + "name": "radius2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.technique", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "technique", + "signature": "LibreMetaverse.ImportExport.Collada14.technique", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.technique.#ctor", + "kind": "constructor", + "name": "technique", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.technique.Any", + "kind": "property", + "name": "Any", + "static": false, + "visibility": "public", + "type": "System.Xml.XmlElement[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAnyElementAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.technique.profile", + "kind": "property", + "name": "profile", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NMTOKEN" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.triangles", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "triangles", + "signature": "LibreMetaverse.ImportExport.Collada14.triangles", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.triangles.#ctor", + "kind": "constructor", + "name": "triangles", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.trifans", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "trifans", + "signature": "LibreMetaverse.ImportExport.Collada14.trifans", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.trifans.#ctor", + "kind": "constructor", + "name": "trifans", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "p" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.tristrips", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "tristrips", + "signature": "LibreMetaverse.ImportExport.Collada14.tristrips", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.tristrips.#ctor", + "kind": "constructor", + "name": "tristrips", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.count", + "kind": "property", + "name": "count", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocalOffset[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.material", + "kind": "property", + "name": "material", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.p", + "kind": "property", + "name": "p", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "p" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.vertices", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "vertices", + "signature": "LibreMetaverse.ImportExport.Collada14.vertices", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.vertices.#ctor", + "kind": "constructor", + "name": "vertices", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.vertices.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.vertices.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.vertices.input", + "kind": "property", + "name": "input", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.InputLocal[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "input" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.vertices.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.visual_scene", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "visual_scene", + "signature": "LibreMetaverse.ImportExport.Collada14.visual_scene", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.visual_scene.#ctor", + "kind": "constructor", + "name": "visual_scene", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.asset", + "kind": "property", + "name": "asset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.asset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.evaluate_scene", + "kind": "property", + "name": "evaluate_scene", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "evaluate_scene" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.extra", + "kind": "property", + "name": "extra", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.extra[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "extra" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.id", + "kind": "property", + "name": "id", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "ID" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.node", + "kind": "property", + "name": "node", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.node[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "node" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "visual_sceneEvaluate_scene", + "signature": "LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene.#ctor", + "kind": "constructor", + "name": "visual_sceneEvaluate_scene", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene.render", + "kind": "property", + "name": "render", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "render" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender", + "namespace": "LibreMetaverse.ImportExport.Collada14", + "name": "visual_sceneEvaluate_sceneRender", + "signature": "LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.17929" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.DebuggerStepThroughAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlTypeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "AnonymousType", + "value": { + "type": "System.Boolean", + "value": "True" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "http://www.collada.org/2005/11/COLLADASchema" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender.#ctor", + "kind": "constructor", + "name": "visual_sceneEvaluate_sceneRender", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender.camera_node", + "kind": "property", + "name": "camera_node", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "anyURI" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender.instance_effect", + "kind": "property", + "name": "instance_effect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.Collada14.instance_effect", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender.layer", + "kind": "property", + "name": "layer", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "layer" + } + ], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "NCName" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.ColladaLoader", + "namespace": "LibreMetaverse.ImportExport", + "name": "ColladaLoader", + "signature": "LibreMetaverse.ImportExport.ColladaLoader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ImportExport.ColladaLoader.#ctor(LibreMetaverse.Imaging.ITextureCodec)", + "kind": "constructor", + "name": "ColladaLoader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureCodec", + "type": "LibreMetaverse.Imaging.ITextureCodec", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Imaging.ITextureCodec" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ColladaLoader.Load(System.String,System.Boolean)", + "kind": "method", + "name": "Load", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ImportExport.ModelPrim\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "loadImages", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Uses XmlSerializer with runtime-reflected COLLADA types. Not AOT-safe." + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.ModelFace", + "namespace": "LibreMetaverse.ImportExport", + "name": "ModelFace", + "signature": "LibreMetaverse.ImportExport.ModelFace", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelFace.Indices", + "kind": "field", + "name": "Indices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelFace.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ImportExport.ModelMaterial", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelFace.MaterialID", + "kind": "field", + "name": "MaterialID", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelFace.Vertices", + "kind": "field", + "name": "Vertices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelFace.#ctor", + "kind": "constructor", + "name": "ModelFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelFace.AddVertex(LibreMetaverse.Rendering.Vertex)", + "kind": "method", + "name": "AddVertex", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "LibreMetaverse.Rendering.Vertex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.ModelMaterial", + "namespace": "LibreMetaverse.ImportExport", + "name": "ModelMaterial", + "signature": "LibreMetaverse.ImportExport.ModelMaterial", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.DiffuseColor", + "kind": "field", + "name": "DiffuseColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.Texture", + "kind": "field", + "name": "Texture", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.TextureData", + "kind": "field", + "name": "TextureData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelMaterial.#ctor", + "kind": "constructor", + "name": "ModelMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.ModelPrim", + "namespace": "LibreMetaverse.ImportExport", + "name": "ModelPrim", + "signature": "LibreMetaverse.ImportExport.ModelPrim", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Asset", + "kind": "field", + "name": "Asset", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.BoundMax", + "kind": "field", + "name": "BoundMax", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.BoundMin", + "kind": "field", + "name": "BoundMin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Faces", + "kind": "field", + "name": "Faces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ImportExport.ModelFace\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Positions", + "kind": "field", + "name": "Positions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelPrim.#ctor", + "kind": "constructor", + "name": "ModelPrim", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelPrim.CreateAsset(LibreMetaverse.UUID)", + "kind": "method", + "name": "CreateAsset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "creator", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelPrim.PhysicsStub", + "kind": "method", + "name": "PhysicsStub", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ImportExport.ModelUploader", + "namespace": "LibreMetaverse.ImportExport", + "name": "ModelUploader", + "signature": "LibreMetaverse.ImportExport.ModelUploader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelUploader.IncludePhysicsStub", + "kind": "field", + "name": "IncludePhysicsStub", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ImportExport.ModelUploader.UseModelAsPhysics", + "kind": "field", + "name": "UseModelAsPhysics", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.#ctor(LibreMetaverse.GridClient,System.Collections.Generic.List{LibreMetaverse.ImportExport.ModelPrim},System.String,System.String)", + "kind": "constructor", + "name": "ModelUploader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prims", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ImportExport.ModelPrim\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "newInvName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newInvDesc", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PerformUploadAsync(System.Uri,System.Threading.CancellationToken)", + "kind": "method", + "name": "PerformUploadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.StructuredData.OSD\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uploader", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.ModelUploader.\u003CPerformUploadAsync\u003Ed__12" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PrepareUploadAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "PrepareUploadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.StructuredData.OSD\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.ModelUploader.\u003CPrepareUploadAsync\u003Ed__11" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.UploadAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "UploadAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.StructuredData.OSD\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ImportExport.ModelUploader.\u003CUploadAsync\u003Ed__10" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.IncomingPacketIDCollection", + "namespace": "LibreMetaverse", + "name": "IncomingPacketIDCollection", + "signature": "LibreMetaverse.IncomingPacketIDCollection", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.IncomingPacketIDCollection.#ctor(System.Int32)", + "kind": "constructor", + "name": "IncomingPacketIDCollection", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.IncomingPacketIDCollection.TryEnqueue(System.UInt32)", + "kind": "method", + "name": "TryEnqueue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ack", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InitiateDownloadEventArgs", + "namespace": "LibreMetaverse", + "name": "InitiateDownloadEventArgs", + "signature": "LibreMetaverse.InitiateDownloadEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InitiateDownloadEventArgs.#ctor(System.String,System.String)", + "kind": "constructor", + "name": "InitiateDownloadEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simFilename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerFilename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InitiateDownloadEventArgs.SimFileName", + "kind": "property", + "name": "SimFileName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InitiateDownloadEventArgs.ViewerFileName", + "kind": "property", + "name": "ViewerFileName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InstantMessage", + "namespace": "LibreMetaverse", + "name": "InstantMessage", + "signature": "LibreMetaverse.InstantMessage", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.InstantMessage.BinaryBucket", + "kind": "field", + "name": "BinaryBucket", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.Dialog", + "kind": "field", + "name": "Dialog", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.FromAgentID", + "kind": "field", + "name": "FromAgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.FromAgentName", + "kind": "field", + "name": "FromAgentName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.GroupIM", + "kind": "field", + "name": "GroupIM", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.IMSessionID", + "kind": "field", + "name": "IMSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.Offline", + "kind": "field", + "name": "Offline", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageOnline", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.Timestamp", + "kind": "field", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessage.ToAgentID", + "kind": "field", + "name": "ToAgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InstantMessage.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ReflectionAnalysis" + }, + { + "type": "System.String", + "value": "IL2026" + } + ], + "named_arguments": [ + { + "name": "Justification", + "value": { + "type": "System.String", + "value": "StructToString is a debug helper; reflection loss is acceptable here." + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InstantMessageDialog", + "namespace": "LibreMetaverse", + "name": "InstantMessageDialog", + "signature": "LibreMetaverse.InstantMessageDialog", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.AcceptTeleport", + "kind": "enum_value", + "name": "AcceptTeleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "23" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.BusyAutoResponse", + "kind": "enum_value", + "name": "BusyAutoResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "20" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.ConsoleAndChatHistory", + "kind": "enum_value", + "name": "ConsoleAndChatHistory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "21" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.DenyTeleport", + "kind": "enum_value", + "name": "DenyTeleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "24" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.FriendshipAccepted", + "kind": "enum_value", + "name": "FriendshipAccepted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "39" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.FriendshipDeclined", + "kind": "enum_value", + "name": "FriendshipDeclined", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "40" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.FriendshipOffered", + "kind": "enum_value", + "name": "FriendshipOffered", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "38" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.FromTaskAsAlert", + "kind": "enum_value", + "name": "FromTaskAsAlert", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "31" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GodLikeRequestTeleport", + "kind": "enum_value", + "name": "GodLikeRequestTeleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "25" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GotoUrl", + "kind": "enum_value", + "name": "GotoUrl", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "28" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupInvitation", + "kind": "enum_value", + "name": "GroupInvitation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupInvitationAccept", + "kind": "enum_value", + "name": "GroupInvitationAccept", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "35" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupInvitationDecline", + "kind": "enum_value", + "name": "GroupInvitationDecline", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "36" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupNotice", + "kind": "enum_value", + "name": "GroupNotice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "32" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupNoticeInventoryAccepted", + "kind": "enum_value", + "name": "GroupNoticeInventoryAccepted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "33" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupNoticeInventoryDeclined", + "kind": "enum_value", + "name": "GroupNoticeInventoryDeclined", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "34" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupNoticeRequested", + "kind": "enum_value", + "name": "GroupNoticeRequested", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "37" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.GroupVote", + "kind": "enum_value", + "name": "GroupVote", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.InventoryAccepted", + "kind": "enum_value", + "name": "InventoryAccepted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.InventoryDeclined", + "kind": "enum_value", + "name": "InventoryDeclined", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.InventoryOffered", + "kind": "enum_value", + "name": "InventoryOffered", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.Lure911", + "kind": "enum_value", + "name": "Lure911", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "30" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.MessageBox", + "kind": "enum_value", + "name": "MessageBox", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.MessageFromAgent", + "kind": "enum_value", + "name": "MessageFromAgent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.MessageFromObject", + "kind": "enum_value", + "name": "MessageFromObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "19" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.NewUserDefault", + "kind": "enum_value", + "name": "NewUserDefault", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "12" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.RequestLure", + "kind": "enum_value", + "name": "RequestLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "26" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.RequestTeleport", + "kind": "enum_value", + "name": "RequestTeleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "22" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.Session911Start", + "kind": "enum_value", + "name": "Session911Start", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "29" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.SessionAdd", + "kind": "enum_value", + "name": "SessionAdd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "13" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.SessionCardlessStart", + "kind": "enum_value", + "name": "SessionCardlessStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.SessionDrop", + "kind": "enum_value", + "name": "SessionDrop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "18" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.SessionGroupStart", + "kind": "enum_value", + "name": "SessionGroupStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "15" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.SessionOfflineAdd", + "kind": "enum_value", + "name": "SessionOfflineAdd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "14" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.SessionSend", + "kind": "enum_value", + "name": "SessionSend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "17" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.StartTyping", + "kind": "enum_value", + "name": "StartTyping", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "41" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.StopTyping", + "kind": "enum_value", + "name": "StopTyping", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "42" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.TaskInventoryAccepted", + "kind": "enum_value", + "name": "TaskInventoryAccepted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.TaskInventoryDeclined", + "kind": "enum_value", + "name": "TaskInventoryDeclined", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "11" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageDialog.TaskInventoryOffered", + "kind": "enum_value", + "name": "TaskInventoryOffered", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageDialog", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InstantMessageEventArgs", + "namespace": "LibreMetaverse", + "name": "InstantMessageEventArgs", + "signature": "LibreMetaverse.InstantMessageEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InstantMessageEventArgs.#ctor(LibreMetaverse.InstantMessage,LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "InstantMessageEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "im", + "type": "LibreMetaverse.InstantMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InstantMessageEventArgs.IM", + "kind": "property", + "name": "IM", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InstantMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InstantMessageEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InstantMessageOnline", + "namespace": "LibreMetaverse", + "name": "InstantMessageOnline", + "signature": "LibreMetaverse.InstantMessageOnline", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.InstantMessageOnline.Offline", + "kind": "enum_value", + "name": "Offline", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageOnline", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageOnline", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InstantMessageOnline.Online", + "kind": "enum_value", + "name": "Online", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageOnline", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InstantMessageOnline", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InterestListManager", + "namespace": "LibreMetaverse", + "name": "InterestListManager", + "signature": "LibreMetaverse.InterestListManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InterestListManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "InterestListManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InterestListManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InterestListManager.ResetAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "ResetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InterestListManager.\u003CResetAsync\u003Ed__10" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InterestListManager.ResetOnSimAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "ResetOnSimAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InterestListManager.\u003CResetOnSimAsync\u003Ed__11" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InterestListManager.SetModeAsync(LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetModeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mode", + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InterestListManager.\u003CSetModeAsync\u003Ed__8" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InterestListManager.SetModeOnSimAsync(LibreMetaverse.Simulator,LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetModeOnSimAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mode", + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InterestListManager.\u003CSetModeOnSimAsync\u003Ed__9" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InterestListManager.CurrentMode", + "kind": "property", + "name": "CurrentMode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Interfaces.IByteBufferPool", + "namespace": "LibreMetaverse.Interfaces", + "name": "IByteBufferPool", + "signature": "LibreMetaverse.Interfaces.IByteBufferPool", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Interfaces.IByteBufferPool.LeaseBytes(System.Int32)", + "kind": "method", + "name": "LeaseBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "minSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Interfaces.IByteBufferPool.ReturnBytes(System.Byte[])", + "kind": "method", + "name": "ReturnBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Interfaces.IMessage", + "namespace": "LibreMetaverse.Interfaces", + "name": "IMessage", + "signature": "LibreMetaverse.Interfaces.IMessage", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Interfaces.IMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Interfaces.IMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Inventory", + "namespace": "LibreMetaverse", + "name": "Inventory", + "signature": "LibreMetaverse.Inventory", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Inventory.InventoryObjectAdded", + "kind": "event", + "name": "InventoryObjectAdded", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.InventoryObjectAddedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Inventory.InventoryObjectRemoved", + "kind": "event", + "name": "InventoryObjectRemoved", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.InventoryObjectRemovedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Inventory.InventoryObjectUpdated", + "kind": "event", + "name": "InventoryObjectUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.InventoryObjectUpdatedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "Inventory", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.#ctor(LibreMetaverse.GridClient,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "Inventory", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "owner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.Contains(LibreMetaverse.InventoryBase)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.Contains(LibreMetaverse.UUID)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.FindAllLinks(LibreMetaverse.UUID)", + "kind": "method", + "name": "FindAllLinks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryNode\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.GetContents(LibreMetaverse.InventoryFolder)", + "kind": "method", + "name": "GetContents", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.InventoryFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.GetContents(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetContents", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.GetNodeFor(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetNodeFor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.GetNodeOrDefault(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetNodeOrDefault", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.GetValueOrDefault(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetValueOrDefault", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.GetValueOrDefault\u0060\u00601(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetValueOrDefault", + "static": false, + "visibility": "public", + "type": "T", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [ + { + "name": "T", + "position": 0, + "variance": "invariant", + "reference_type": true, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + } + ], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.RemoveNodeFor(LibreMetaverse.InventoryBase)", + "kind": "method", + "name": "RemoveNodeFor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.RestoreFromDisk(System.String)", + "kind": "method", + "name": "RestoreFromDisk", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.RestoreFromDiskAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "RestoreFromDiskAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.SaveToDisk(System.String)", + "kind": "method", + "name": "SaveToDisk", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.SaveToDiskAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SaveToDiskAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.TryGetNodeFor(LibreMetaverse.UUID,LibreMetaverse.InventoryNode@)", + "kind": "method", + "name": "TryGetNodeFor", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "node", + "type": "LibreMetaverse.InventoryNode\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.TryGetValue(LibreMetaverse.UUID,LibreMetaverse.InventoryBase@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryBase\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.TryGetValue\u0060\u00601(LibreMetaverse.UUID,\u0060\u00600@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "T", + "position": 0, + "variance": "invariant", + "reference_type": true, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + } + ], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "T\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Inventory.UpdateNodeFor(LibreMetaverse.InventoryBase)", + "kind": "method", + "name": "UpdateNodeFor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.Item(LibreMetaverse.UUID)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "uuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.LibraryFolder", + "kind": "property", + "name": "LibraryFolder", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.LibraryRootNode", + "kind": "property", + "name": "LibraryRootNode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.Owner", + "kind": "property", + "name": "Owner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.RootFolder", + "kind": "property", + "name": "RootFolder", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Inventory.RootNode", + "kind": "property", + "name": "RootNode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryAISClient", + "namespace": "LibreMetaverse", + "name": "InventoryAISClient", + "signature": "LibreMetaverse.InventoryAISClient", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.InventoryAISClient.INVENTORY_CAP_NAME", + "kind": "constant", + "name": "INVENTORY_CAP_NAME", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "InventoryAPIv3" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryAISClient.LIBRARY_CAP_NAME", + "kind": "constant", + "name": "LIBRARY_CAP_NAME", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "LibraryAPIv3" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "InventoryAISClient", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyCategoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulate", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CCopyCategoryAsync\u003Ed__19" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyCategoryChildrenAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CCopyCategoryChildrenAsync\u003Ed__22" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyCategoryLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CCopyCategoryLinksAsync\u003Ed__26" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CCopyItemAsync\u003Ed__29" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.CopyLibraryCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyLibraryCategoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "copySubfolders", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CCopyLibraryCategoryAsync\u003Ed__15" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.CreateInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.InventoryItem\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "created" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parentUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newInventory", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "createLink", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CCreateInventoryAsync\u003Ed__10" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryChildrenAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "DeleteCategoryChildrenAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CDeleteCategoryChildrenAsync\u003Ed__24" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "DeleteCategoryLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CDeleteCategoryLinksAsync\u003Ed__28" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.EmptyTrashAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "EmptyTrashAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CEmptyTrashAsync\u003Ed__39" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCOFAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchCOFAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CFetchCOFAsync\u003Ed__37" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchCategoryCategoriesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "folders" + }, + { + "type": "System.String", + "value": "items" + }, + { + "type": "System.String", + "value": "links" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "catId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "useInventoryCap", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "recursive", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "depth", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CFetchCategoryCategoriesAsync\u003Ed__33" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchCategorySubsetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "folders" + }, + { + "type": "System.String", + "value": "items" + }, + { + "type": "System.String", + "value": "links" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "catId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "specificChildren", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "useInventoryCap", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "recursive", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "depth", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CFetchCategorySubsetAsync\u003Ed__34" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "folders" + }, + { + "type": "System.String", + "value": "items" + }, + { + "type": "System.String", + "value": "links" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CFetchItemAsync\u003Ed__36" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.FetchOrphansAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchOrphansAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CFetchOrphansAsync\u003Ed__38" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCategoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "folders" + }, + { + "type": "System.String", + "value": "items" + }, + { + "type": "System.String", + "value": "links" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CGetCategoryAsync\u003Ed__31" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCategoryChildrenAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "folders" + }, + { + "type": "System.String", + "value": "items" + }, + { + "type": "System.String", + "value": "links" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "depth", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "recursive", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CGetCategoryChildrenAsync\u003Ed__32" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetCategoryLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "folders" + }, + { + "type": "System.String", + "value": "items" + }, + { + "type": "System.String", + "value": "links" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CGetCategoryLinksAsync\u003Ed__35" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveCategoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CMoveCategoryAsync\u003Ed__20" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveCategoryChildrenAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveCategoryLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CMoveItemAsync\u003Ed__30" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.ParseAISResponseMeta(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseAISResponseMeta", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AISResponseMeta", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.ParseEmbedded(LibreMetaverse.StructuredData.OSDMap,System.Collections.Generic.List{LibreMetaverse.InventoryFolder}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@)", + "kind": "method", + "name": "ParseEmbedded", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folders", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "links", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.ParseFoldersFromEmbedded(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseFoldersFromEmbedded", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.ParseItemsFromEmbedded(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseItemsFromEmbedded", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.ParseLinksFromEmbedded(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseLinksFromEmbedded", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.PurgeDescendentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "PurgeDescendentsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "categoryUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CPurgeDescendentsAsync\u003Ed__16" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryChildrenAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "kind": "method", + "name": "PutCategoryChildrenAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "childrenPayload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CPutCategoryChildrenAsync\u003Ed__21" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryLinksAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "kind": "method", + "name": "PutCategoryLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "linksPayload", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CPutCategoryLinksAsync\u003Ed__25" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveCategoryAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveCategoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "categoryUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CRemoveCategoryAsync\u003Ed__13" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CRemoveItemAsync\u003Ed__14" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.SlamFolderAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "kind": "method", + "name": "SlamFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newInventory", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CSlamFolderAsync\u003Ed__12" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateCategoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "categoryUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "updates", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CUpdateCategoryAsync\u003Ed__17" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateItemAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemUuid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "updates", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAISClient.\u003CUpdateItemAsync\u003Ed__18" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryAISClient.IsAvailable", + "kind": "property", + "name": "IsAvailable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryAnimation", + "namespace": "LibreMetaverse", + "name": "InventoryAnimation", + "signature": "LibreMetaverse.InventoryAnimation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryAnimation.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryAnimation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryAttachment", + "namespace": "LibreMetaverse", + "name": "InventoryAttachment", + "signature": "LibreMetaverse.InventoryAttachment", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryAttachment.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryAttachment", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryAttachment.AttachmentPoint", + "kind": "property", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryBase", + "namespace": "LibreMetaverse", + "name": "InventoryBase", + "signature": "LibreMetaverse.InventoryBase", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "0" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryFolder" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "1" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryItem" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "10" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryNotecard" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "11" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryObject" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "12" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventorySettings" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "13" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventorySnapshot" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "14" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventorySound" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "15" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryTexture" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "16" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryWearable" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "2" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAnimation" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "3" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryAttachment" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "4" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryCallingCard" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "5" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryCategory" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "6" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryGesture" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "7" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryLSL" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "8" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryLandmark" + } + ], + "named_arguments": [] + }, + { + "type": "MessagePack.UnionAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "9" + }, + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryMaterial" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryBase.Equals(LibreMetaverse.InventoryBase)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryBase.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryBase.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryBase.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryBase.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Name" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryBase.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "OwnerID" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryBase.ParentUUID", + "kind": "property", + "name": "ParentUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "ParentUUID" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryBase.UUID", + "kind": "property", + "name": "UUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "UUID" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryCallingCard", + "namespace": "LibreMetaverse", + "name": "InventoryCallingCard", + "signature": "LibreMetaverse.InventoryCallingCard", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryCallingCard.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryCallingCard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryCategory", + "namespace": "LibreMetaverse", + "name": "InventoryCategory", + "signature": "LibreMetaverse.InventoryCategory", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryCategory.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryCategory", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryException", + "namespace": "LibreMetaverse", + "name": "InventoryException", + "signature": "LibreMetaverse.InventoryException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryException.#ctor", + "kind": "constructor", + "name": "InventoryException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryException.#ctor(System.String)", + "kind": "constructor", + "name": "InventoryException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryException.#ctor(System.String,System.Exception)", + "kind": "constructor", + "name": "InventoryException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "innerException", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryFolder", + "namespace": "LibreMetaverse", + "name": "InventoryFolder", + "signature": "LibreMetaverse.InventoryFolder", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryBase", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.InventoryFolder.VERSION_UNKNOWN", + "kind": "constant", + "name": "VERSION_UNKNOWN", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "-1" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryFolder", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.Equals(LibreMetaverse.InventoryBase)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.Equals(LibreMetaverse.InventoryFolder)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "LibreMetaverse.InventoryFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryFolder.Update(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryFolder.DescendentCount", + "kind": "property", + "name": "DescendentCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "DescendentCount" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryFolder.PreferredType", + "kind": "property", + "name": "PreferredType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "PreferredType" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryFolder.Version", + "kind": "property", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Version" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryGesture", + "namespace": "LibreMetaverse", + "name": "InventoryGesture", + "signature": "LibreMetaverse.InventoryGesture", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryGesture.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryGesture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryItem", + "namespace": "LibreMetaverse", + "name": "InventoryItem", + "signature": "LibreMetaverse.InventoryItem", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryBase", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryItem.#ctor(LibreMetaverse.InventoryType,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryItem", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryItem", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.Equals(LibreMetaverse.InventoryBase)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.Equals(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItem", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.IsLink", + "kind": "method", + "name": "IsLink", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryItem.Update(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "AssetType" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.AssetUUID", + "kind": "property", + "name": "AssetUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "AssetUUID" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.CreationDate", + "kind": "property", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "CreationDate" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.CreatorID", + "kind": "property", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "CreatorID" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.Description", + "kind": "property", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Description" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.Flags", + "kind": "property", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Flags" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "GroupID" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.GroupOwned", + "kind": "property", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "GroupOwned" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.InventoryType", + "kind": "property", + "name": "InventoryType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "InventoryType" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.LastOwnerID", + "kind": "property", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "LastOwnerID" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.Permissions", + "kind": "property", + "name": "Permissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Permissions" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.ResolvedAssetID", + "kind": "property", + "name": "ResolvedAssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.ResolvedItemID", + "kind": "property", + "name": "ResolvedItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.SalePrice", + "kind": "property", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "SalePrice" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.SaleType", + "kind": "property", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "SaleType" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryItem.TransactionID", + "kind": "property", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "TransactionID" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryItemFlags", + "namespace": "LibreMetaverse", + "name": "InventoryItemFlags", + "signature": "LibreMetaverse.InventoryItemFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectHasMultipleItems", + "kind": "enum_value", + "name": "ObjectHasMultipleItems", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "2097152" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectOverwriteBase", + "kind": "enum_value", + "name": "ObjectOverwriteBase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectOverwriteEveryone", + "kind": "enum_value", + "name": "ObjectOverwriteEveryone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "524288" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectOverwriteGroup", + "kind": "enum_value", + "name": "ObjectOverwriteGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "262144" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectOverwriteNextOwner", + "kind": "enum_value", + "name": "ObjectOverwriteNextOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "1048576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectOverwriteOwner", + "kind": "enum_value", + "name": "ObjectOverwriteOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "131072" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectSlamPerm", + "kind": "enum_value", + "name": "ObjectSlamPerm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.ObjectSlamSale", + "kind": "enum_value", + "name": "ObjectSlamSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryItemFlags.SharedSingleReference", + "kind": "enum_value", + "name": "SharedSingleReference", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryItemFlags", + "value": "1073741824" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryLSL", + "namespace": "LibreMetaverse", + "name": "InventoryLSL", + "signature": "LibreMetaverse.InventoryLSL", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryLSL.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryLSL", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryLandmark", + "namespace": "LibreMetaverse", + "name": "InventoryLandmark", + "signature": "LibreMetaverse.InventoryLandmark", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryLandmark.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryLandmark", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryLandmark.LandmarkVisited", + "kind": "property", + "name": "LandmarkVisited", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryManager", + "namespace": "LibreMetaverse", + "name": "InventoryManager", + "signature": "LibreMetaverse.InventoryManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.InventoryManager.FindObjectByPathReply", + "kind": "event", + "name": "FindObjectByPathReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FindObjectByPathReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.FolderUpdated", + "kind": "event", + "name": "FolderUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.FolderUpdatedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.InventoryObjectOffered", + "kind": "event", + "name": "InventoryObjectOffered", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.InventoryObjectOfferedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.ItemReceived", + "kind": "event", + "name": "ItemReceived", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ItemReceivedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.SaveAssetToInventory", + "kind": "event", + "name": "SaveAssetToInventory", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SaveAssetToInventoryEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.ScriptRunningReply", + "kind": "event", + "name": "ScriptRunningReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ScriptRunningReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.TaskInventoryReply", + "kind": "event", + "name": "TaskInventoryReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.TaskInventoryReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.InventoryManager.TaskItemReceived", + "kind": "event", + "name": "TaskItemReceived", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.TaskItemReceivedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryManager.MAGIC_ID", + "kind": "field", + "name": "MAGIC_ID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryManager.MAX_GIVE_ITEMS", + "kind": "constant", + "name": "MAX_GIVE_ITEMS", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "66" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "InventoryManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParent", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "oldOwnerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CCopyItemAsync\u003Ed__98" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "CopyItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParent", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CopyScriptToTask(System.UInt32,LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.Simulator)", + "kind": "method", + "name": "CopyScriptToTask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "enableScript", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Simulator" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateFolder(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "CreateFolder", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateFolder(LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType)", + "kind": "method", + "name": "CreateFolder", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "preferredType", + "type": "LibreMetaverse.FolderType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateInventoryItem(LibreMetaverse.InventoryType,LibreMetaverse.UUID)", + "kind": "method", + "name": "CreateInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryItem", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parentFolder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetTransactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nextOwnerMask", + "type": "LibreMetaverse.PermissionMask", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.WearableType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parentFolder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetTransactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearableType", + "type": "LibreMetaverse.WearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nextOwnerMask", + "type": "LibreMetaverse.PermissionMask", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "CreateItemFromAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CreateItemFromAssetResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "permissions", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CCreateItemFromAssetAsync\u003Ed__31" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "CreateItemFromAssetVariablePriceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CreateItemFromAssetResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "permissions", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "confirmCost", + "type": "System.Func\u003CSystem.Int32, System.Boolean\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Func\u003CSystem.Int32, System.Boolean\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CCreateItemFromAssetVariablePriceAsync\u003Ed__34" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateLinkAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.InventoryType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateLinkAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CCreateLinkAsync\u003Ed__95" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateLinksAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "linksToCreate", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.ValueTuple\u003CLibreMetaverse.InventoryBase, System.String\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "item" + }, + { + "type": "System.String", + "value": "description" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.Action\u003CSystem.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CCreateLinksAsync\u003Ed__96" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateOrRetrieveInventoryItem(LibreMetaverse.InventoryType,LibreMetaverse.UUID)", + "kind": "method", + "name": "CreateOrRetrieveInventoryItem", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryItem", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "InvType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ItemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.DecryptShadowID(LibreMetaverse.UUID)", + "kind": "method", + "name": "DecryptShadowID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "shadowID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.EmptyFolder(LibreMetaverse.UUID)", + "kind": "method", + "name": "EmptyFolder", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.EmptyLostAndFoundAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "EmptyLostAndFoundAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CEmptyLostAndFoundAsync\u003Ed__88" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.EmptyTrashAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "EmptyTrashAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CEmptyTrashAsync\u003Ed__89" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.EncryptAssetID(LibreMetaverse.UUID)", + "kind": "method", + "name": "EncryptAssetID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.FetchItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CFetchItemAsync\u003Ed__20" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.FetchItemHttpAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchItemHttpAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "token", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CFetchItemHttpAsync\u003Ed__62" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.FindFolderForType(LibreMetaverse.AssetType)", + "kind": "method", + "name": "FindFolderForType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.FindFolderForType(LibreMetaverse.FolderType)", + "kind": "method", + "name": "FindFolderForType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.FolderType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.FindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "FindObjectByPathAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "baseFolder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventoryOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CFindObjectByPathAsync\u003Ed__22" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "kind": "method", + "name": "FolderContentsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "owner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchFolders", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchItems", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "order", + "type": "LibreMetaverse.InventorySortOrder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "followLinks", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CFolderContentsAsync\u003Ed__21" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.GetInventoryRecursiveAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "kind": "method", + "name": "GetInventoryRecursiveAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "owner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cats", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CGetInventoryRecursiveAsync\u003Ed__27" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.GetTaskInventoryAsync(LibreMetaverse.UUID,System.UInt32,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetTaskInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Simulator" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CGetTaskInventoryAsync\u003Ed__23" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.GiveFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "GiveFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "recipient", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "doEffect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CGiveFolderAsync\u003Ed__26" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.GiveItem(LibreMetaverse.UUID,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "GiveItem", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "recipient", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "doEffect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.ItemCRC(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "ItemCRC", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "iitem", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.LocalFind(LibreMetaverse.UUID,System.String[],System.Int32,System.Boolean)", + "kind": "method", + "name": "LocalFind", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "baseFolder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "path", + "type": "System.String[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "firstOnly", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.Move(LibreMetaverse.InventoryBase,LibreMetaverse.InventoryFolder)", + "kind": "method", + "name": "Move", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParent", + "type": "LibreMetaverse.InventoryFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveFolder(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveFolder", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveFolderAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CMoveFolderAsync\u003Ed__0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveFolders(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveFolders", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "foldersNewParents", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveFoldersAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveFoldersAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "foldersNewParents", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CMoveFoldersAsync\u003Ed__1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItem", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItem", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CMoveItemAsync\u003Ed__3" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveItems(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItems", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemsNewFolders", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveItemsAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "MoveItemsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemsNewFolders", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CMoveItemsAsync\u003Ed__4" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.MoveTaskInventory(System.UInt32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "MoveTaskInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskItemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventoryFolderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.ParseTaskInventory(System.String)", + "kind": "method", + "name": "ParseTaskInventory", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "taskData", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RemoveDescendantsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveDescendantsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRemoveDescendantsAsync\u003Ed__84" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RemoveFolderAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRemoveFolderAsync\u003Ed__87" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRemoveItemAsync\u003Ed__86" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemsAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveItemsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRemoveItemsAsync\u003Ed__85" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RemoveTaskInventory(System.UInt32,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "RemoveTaskInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskItemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestCopyItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParent", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "oldOwnerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestCopyItemAsync\u003Ed__19" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestCopyItemAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newParent", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemFromNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestCopyItemFromNotecardAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notecardID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestCopyItemFromNotecardAsync\u003Ed__6" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestCopyItemsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CopyItemsResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "targetFolders", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "newNames", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "oldOwnerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestCopyItemsWithResultAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CopyItemsResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "targetFolders", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "newNames", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "oldOwnerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestCopyItemsWithResultAsync\u003Ed__38" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestCreateItemFromAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "status" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetType", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invType", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "permissions", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestCreateItemFromAssetAsync\u003Ed__5" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestDeRezToInventory(System.UInt32)", + "kind": "method", + "name": "RequestDeRezToInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestDeRezToInventory(System.UInt32,LibreMetaverse.DeRezDestination,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestDeRezToInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destType", + "type": "LibreMetaverse.DeRezDestination", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destFolder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFetchInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFetchInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFetchInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken,System.Action{System.Collections.Generic.List{LibreMetaverse.InventoryItem}})", + "kind": "method", + "name": "RequestFetchInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFindObjectByPathAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "baseFolder", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventoryOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestFindObjectByPathAsync\u003Ed__73" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFolderContentsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchFolders", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchItems", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "order", + "type": "LibreMetaverse.InventorySortOrder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestFolderContentsAsync\u003Ed__68" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFolderContentsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "batch", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "capabilityUri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchFolders", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchItems", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "order", + "type": "LibreMetaverse.InventorySortOrder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestFolderContentsAsync\u003Ed__69" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderUpdateAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestFolderUpdateAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.FolderUpdateResult\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fetchFolders", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "fetchItems", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "order", + "type": "LibreMetaverse.InventorySortOrder", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.InventorySortOrder", + "value": "ByName" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestFolderUpdateAsync\u003Ed__35" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestGetScriptRunning(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestGetScriptRunning", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scriptID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestRestoreRezFromInventory(LibreMetaverse.Simulator,LibreMetaverse.InventoryItem,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestRestoreRezFromInventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestRezFromInventory(LibreMetaverse.Simulator,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "RequestRezFromInventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestRezFromInventory(LibreMetaverse.Simulator,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.InventoryItem,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestRezFromInventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestRezFromInventory(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.InventoryItem,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "RequestRezFromInventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rezSelected", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestSetScriptRunning(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "RequestSetScriptRunning", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scriptID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "running", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestTaskInventory(System.UInt32)", + "kind": "method", + "name": "RequestTaskInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestTaskInventory(System.UInt32,LibreMetaverse.Simulator)", + "kind": "method", + "name": "RequestTaskInventory", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItem(LibreMetaverse.InventoryItem)", + "kind": "method", + "name": "RequestUpdateItem", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItems(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "kind": "method", + "name": "RequestUpdateItems", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItems(System.Collections.Generic.List{LibreMetaverse.InventoryItem},LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestUpdateItems", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "items", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUpdateMaterialAgentInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "status" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "material", + "type": "LibreMetaverse.Assets.AssetMaterial", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "materialItemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUpdateMaterialAgentInventoryAsync\u003Ed__11" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUpdateMaterialTaskInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "status" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "material", + "type": "LibreMetaverse.Assets.AssetMaterial", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "materialItemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUpdateMaterialTaskInventoryAsync\u003Ed__12" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUpdateNotecardTaskAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "status" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notecardID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUpdateNotecardTaskAsync\u003Ed__9" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUpdateScriptAgentInventoryAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, System.Boolean, System.Collections.Generic.List\u003CSystem.String\u003E, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "uploadSuccess" + }, + { + "type": "System.String", + "value": "uploadStatus" + }, + { + "type": "System.String", + "value": "compileSuccess" + }, + { + "type": "System.String", + "value": "compileMessages" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mono", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUpdateScriptAgentInventoryAsync\u003Ed__13" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUpdateScriptTaskAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, System.Boolean, System.Collections.Generic.List\u003CSystem.String\u003E, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "uploadSuccess" + }, + { + "type": "System.String", + "value": "uploadStatus" + }, + { + "type": "System.String", + "value": "compileSuccess" + }, + { + "type": "System.String", + "value": "compileMessages" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mono", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "running", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUpdateScriptTaskAsync\u003Ed__14" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUploadGestureAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "status" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gestureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUploadGestureAssetAsync\u003Ed__10" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "RequestUploadNotecardAssetAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "status" + }, + { + "type": "System.String", + "value": "itemID" + }, + { + "type": "System.String", + "value": "assetID" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "notecardID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CRequestUploadNotecardAssetAsync\u003Ed__8" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.UpdateFolderProperties(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType)", + "kind": "method", + "name": "UpdateFolderProperties", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.FolderType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.UpdateTaskInventory(System.UInt32,LibreMetaverse.InventoryItem,LibreMetaverse.Simulator,System.Boolean)", + "kind": "method", + "name": "UpdateTaskInventory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocalID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Simulator" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "only_mod_meta", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.UploadThumbnailAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "kind": "method", + "name": "UploadThumbnailAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inventoryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "j2cImageData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "progress", + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CUploadThumbnailAsync\u003Ed__25" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryManager.WaitForNextInventoryOfferAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "WaitForNextInventoryOfferAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryObjectOfferedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.InventoryManager.\u003CWaitForNextInventoryOfferAsync\u003Ed__36" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CanUploadLargeTextures", + "kind": "property", + "name": "CanUploadLargeTextures", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.NoResults", + "kind": "property", + "name": "NoResults", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.Store", + "kind": "property", + "name": "Store", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Inventory", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryManager.CopyItemsResult", + "namespace": "LibreMetaverse", + "name": "CopyItemsResult", + "signature": "LibreMetaverse.InventoryManager.CopyItemsResult", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryManager.CopyItemsResult.#ctor", + "kind": "constructor", + "name": "CopyItemsResult", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CopyItemsResult.CopiedItems", + "kind": "property", + "name": "CopiedItems", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CopyItemsResult.Error", + "kind": "property", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Exception", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CopyItemsResult.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryManager.CreateItemFromAssetResult", + "namespace": "LibreMetaverse", + "name": "CreateItemFromAssetResult", + "signature": "LibreMetaverse.InventoryManager.CreateItemFromAssetResult", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.#ctor", + "kind": "constructor", + "name": "CreateItemFromAssetResult", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.AssetID", + "kind": "property", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.Error", + "kind": "property", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Exception", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.ItemID", + "kind": "property", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.RawResult", + "kind": "property", + "name": "RawResult", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.Status", + "kind": "property", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryManager.FolderUpdateResult", + "namespace": "LibreMetaverse", + "name": "FolderUpdateResult", + "signature": "LibreMetaverse.InventoryManager.FolderUpdateResult", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryManager.FolderUpdateResult.#ctor", + "kind": "constructor", + "name": "FolderUpdateResult", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.FolderUpdateResult.Contents", + "kind": "property", + "name": "Contents", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.FolderUpdateResult.FolderID", + "kind": "property", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryManager.FolderUpdateResult.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryMaterial", + "namespace": "LibreMetaverse", + "name": "InventoryMaterial", + "signature": "LibreMetaverse.InventoryMaterial", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryMaterial.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryNode", + "namespace": "LibreMetaverse", + "name": "InventoryNode", + "signature": "LibreMetaverse.InventoryNode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryNode.#ctor", + "kind": "constructor", + "name": "InventoryNode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryNode.#ctor(LibreMetaverse.InventoryBase)", + "kind": "constructor", + "name": "InventoryNode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryNode.#ctor(LibreMetaverse.InventoryBase,LibreMetaverse.InventoryNode)", + "kind": "constructor", + "name": "InventoryNode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parent", + "type": "LibreMetaverse.InventoryNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.InventoryNode.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNode.Data", + "kind": "property", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Data" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNode.ModifyTime", + "kind": "property", + "name": "ModifyTime", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNode.NeedsUpdate", + "kind": "property", + "name": "NeedsUpdate", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNode.Nodes", + "kind": "property", + "name": "Nodes", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNodeDictionary", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNode.Parent", + "kind": "property", + "name": "Parent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryNodeDictionary", + "namespace": "LibreMetaverse", + "name": "InventoryNodeDictionary", + "signature": "LibreMetaverse.InventoryNodeDictionary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryNodeDictionary.#ctor(LibreMetaverse.InventoryNode)", + "kind": "constructor", + "name": "InventoryNodeDictionary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parent", + "type": "LibreMetaverse.InventoryNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryNodeDictionary.Add(LibreMetaverse.UUID,LibreMetaverse.InventoryNode)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "LibreMetaverse.InventoryNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryNodeDictionary.Contains(LibreMetaverse.UUID)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.InventoryNodeDictionary.Remove(LibreMetaverse.UUID)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Item(LibreMetaverse.UUID)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Keys", + "kind": "property", + "name": "Keys", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Parent", + "kind": "property", + "name": "Parent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryNode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNodeDictionary.SyncRoot", + "kind": "property", + "name": "SyncRoot", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.InventoryNode\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryNotecard", + "namespace": "LibreMetaverse", + "name": "InventoryNotecard", + "signature": "LibreMetaverse.InventoryNotecard", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryNotecard.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryNotecard", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryObject", + "namespace": "LibreMetaverse", + "name": "InventoryObject", + "signature": "LibreMetaverse.InventoryObject", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryObject.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryObject", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObject.AttachPoint", + "kind": "property", + "name": "AttachPoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObject.ItemFlags", + "kind": "property", + "name": "ItemFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryItemFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryObjectAddedEventArgs", + "namespace": "LibreMetaverse", + "name": "InventoryObjectAddedEventArgs", + "signature": "LibreMetaverse.InventoryObjectAddedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryObjectAddedEventArgs.#ctor(LibreMetaverse.InventoryBase)", + "kind": "constructor", + "name": "InventoryObjectAddedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectAddedEventArgs.Obj", + "kind": "property", + "name": "Obj", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryObjectOfferedEventArgs", + "namespace": "LibreMetaverse", + "name": "InventoryObjectOfferedEventArgs", + "signature": "LibreMetaverse.InventoryObjectOfferedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryObjectOfferedEventArgs.#ctor(LibreMetaverse.InstantMessage,LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryObjectOfferedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "offerDetails", + "type": "LibreMetaverse.InstantMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fromTask", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.Accept", + "kind": "property", + "name": "Accept", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.AssetType", + "kind": "property", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.FolderID", + "kind": "property", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.FromTask", + "kind": "property", + "name": "FromTask", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.Offer", + "kind": "property", + "name": "Offer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InstantMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryObjectRemovedEventArgs", + "namespace": "LibreMetaverse", + "name": "InventoryObjectRemovedEventArgs", + "signature": "LibreMetaverse.InventoryObjectRemovedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryObjectRemovedEventArgs.#ctor(LibreMetaverse.InventoryBase)", + "kind": "constructor", + "name": "InventoryObjectRemovedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectRemovedEventArgs.Obj", + "kind": "property", + "name": "Obj", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryObjectUpdatedEventArgs", + "namespace": "LibreMetaverse", + "name": "InventoryObjectUpdatedEventArgs", + "signature": "LibreMetaverse.InventoryObjectUpdatedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryObjectUpdatedEventArgs.#ctor(LibreMetaverse.InventoryBase,LibreMetaverse.InventoryBase)", + "kind": "constructor", + "name": "InventoryObjectUpdatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "oldObject", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newObject", + "type": "LibreMetaverse.InventoryBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectUpdatedEventArgs.NewObject", + "kind": "property", + "name": "NewObject", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryObjectUpdatedEventArgs.OldObject", + "kind": "property", + "name": "OldObject", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryBase", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventorySettings", + "namespace": "LibreMetaverse", + "name": "InventorySettings", + "signature": "LibreMetaverse.InventorySettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventorySettings.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventorySettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventorySnapshot", + "namespace": "LibreMetaverse", + "name": "InventorySnapshot", + "signature": "LibreMetaverse.InventorySnapshot", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventorySnapshot.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventorySnapshot", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventorySortOrder", + "namespace": "LibreMetaverse", + "name": "InventorySortOrder", + "signature": "LibreMetaverse.InventorySortOrder", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.InventorySortOrder.ByDate", + "kind": "enum_value", + "name": "ByDate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventorySortOrder", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventorySortOrder", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventorySortOrder.ByName", + "kind": "enum_value", + "name": "ByName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventorySortOrder", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventorySortOrder", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventorySortOrder.FoldersByName", + "kind": "enum_value", + "name": "FoldersByName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventorySortOrder", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventorySortOrder", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventorySortOrder.SystemFoldersToTop", + "kind": "enum_value", + "name": "SystemFoldersToTop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventorySortOrder", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventorySortOrder", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventorySound", + "namespace": "LibreMetaverse", + "name": "InventorySound", + "signature": "LibreMetaverse.InventorySound", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventorySound.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventorySound", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryTexture", + "namespace": "LibreMetaverse", + "name": "InventoryTexture", + "signature": "LibreMetaverse.InventoryTexture", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryTexture.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryTexture", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryWearable", + "namespace": "LibreMetaverse", + "name": "InventoryWearable", + "signature": "LibreMetaverse.InventoryWearable", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.InventoryItem", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.InventoryWearable.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "InventoryWearable", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "UUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.InventoryWearable.WearableType", + "kind": "property", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "MessagePack.IgnoreMemberAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ItemReceivedEventArgs", + "namespace": "LibreMetaverse", + "name": "ItemReceivedEventArgs", + "signature": "LibreMetaverse.ItemReceivedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ItemReceivedEventArgs.#ctor(LibreMetaverse.InventoryItem)", + "kind": "constructor", + "name": "ItemReceivedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.InventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ItemReceivedEventArgs.Item", + "kind": "property", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryItem", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.KillObjectEventArgs", + "namespace": "LibreMetaverse", + "name": "KillObjectEventArgs", + "signature": "LibreMetaverse.KillObjectEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.KillObjectEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32)", + "kind": "constructor", + "name": "KillObjectEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.KillObjectEventArgs.ObjectLocalID", + "kind": "property", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.KillObjectEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.KillObjectsEventArgs", + "namespace": "LibreMetaverse", + "name": "KillObjectsEventArgs", + "signature": "LibreMetaverse.KillObjectsEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.KillObjectsEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32[])", + "kind": "constructor", + "name": "KillObjectsEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectIDs", + "type": "System.UInt32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.KillObjectsEventArgs.ObjectLocalIDs", + "kind": "property", + "name": "ObjectLocalIDs", + "static": false, + "visibility": "public", + "type": "System.UInt32[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.KillObjectsEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LandPatchReceivedEventArgs", + "namespace": "LibreMetaverse", + "name": "LandPatchReceivedEventArgs", + "signature": "LibreMetaverse.LandPatchReceivedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LandPatchReceivedEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.Int32,System.Single[])", + "kind": "constructor", + "name": "LandPatchReceivedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "patchSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "heightMap", + "type": "System.Single[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.HeightMap", + "kind": "property", + "name": "HeightMap", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.PatchSize", + "kind": "property", + "name": "PatchSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.X", + "kind": "property", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.Y", + "kind": "property", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LandingType", + "namespace": "LibreMetaverse", + "name": "LandingType", + "signature": "LibreMetaverse.LandingType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LandingType.Direct", + "kind": "enum_value", + "name": "Direct", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LandingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LandingType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LandingType.LandingPoint", + "kind": "enum_value", + "name": "LandingPoint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LandingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LandingType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LandingType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LandingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LandingType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LastExecStatus", + "namespace": "LibreMetaverse", + "name": "LastExecStatus", + "signature": "LibreMetaverse.LastExecStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LastExecStatus.ForcedCrash", + "kind": "enum_value", + "name": "ForcedCrash", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LastExecStatus", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LastExecStatus.Froze", + "kind": "enum_value", + "name": "Froze", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LastExecStatus", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LastExecStatus.LogoutCrash", + "kind": "enum_value", + "name": "LogoutCrash", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LastExecStatus", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LastExecStatus.LogoutFroze", + "kind": "enum_value", + "name": "LogoutFroze", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LastExecStatus", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LastExecStatus.Normal", + "kind": "enum_value", + "name": "Normal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LastExecStatus", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LastExecStatus.OtherCrash", + "kind": "enum_value", + "name": "OtherCrash", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LastExecStatus", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LegacyEnvironmentEventArgs", + "namespace": "LibreMetaverse", + "name": "LegacyEnvironmentEventArgs", + "signature": "LibreMetaverse.LegacyEnvironmentEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LegacyEnvironmentEventArgs.#ctor(LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage)", + "kind": "constructor", + "name": "LegacyEnvironmentEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "environment", + "type": "LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LegacyEnvironmentEventArgs.Environment", + "kind": "property", + "name": "Environment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LindenAttentions", + "namespace": "LibreMetaverse", + "name": "LindenAttentions", + "signature": "LibreMetaverse.LindenAttentions", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LindenAttentions.Default", + "kind": "field", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttentionSet[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LindenAttentions.Updated", + "kind": "field", + "name": "Updated", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttentionSet[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LindenAttentions.DefaultFeminine", + "kind": "property", + "name": "DefaultFeminine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttentionSet\u0026", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LindenAttentions.DefaultMasculine", + "kind": "property", + "name": "DefaultMasculine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttentionSet\u0026", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LindenAttentions.UpdatedFeminine", + "kind": "property", + "name": "UpdatedFeminine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttentionSet\u0026", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LindenAttentions.UpdatedMasculine", + "kind": "property", + "name": "UpdatedMasculine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttentionSet\u0026", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LiveParticle", + "namespace": "LibreMetaverse", + "name": "LiveParticle", + "signature": "LibreMetaverse.LiveParticle", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LiveParticle.Age", + "kind": "field", + "name": "Age", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.Color", + "kind": "field", + "name": "Color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.Glow", + "kind": "field", + "name": "Glow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.NormalizedAge", + "kind": "field", + "name": "NormalizedAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.ScaleX", + "kind": "field", + "name": "ScaleX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.ScaleY", + "kind": "field", + "name": "ScaleY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LiveParticle.Velocity", + "kind": "field", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoadUrlEventArgs", + "namespace": "LibreMetaverse", + "name": "LoadUrlEventArgs", + "signature": "LibreMetaverse.LoadUrlEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoadUrlEventArgs.#ctor(System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.String,System.String)", + "kind": "constructor", + "name": "LoadUrlEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerIsGroup", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "url", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoadUrlEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoadUrlEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoadUrlEventArgs.ObjectName", + "kind": "property", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoadUrlEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoadUrlEventArgs.OwnerIsGroup", + "kind": "property", + "name": "OwnerIsGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoadUrlEventArgs.URL", + "kind": "property", + "name": "URL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoggedOutEventArgs", + "namespace": "LibreMetaverse", + "name": "LoggedOutEventArgs", + "signature": "LibreMetaverse.LoggedOutEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.LoggedOutEventArgs.InventoryItems", + "kind": "field", + "name": "InventoryItems", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoggedOutEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "constructor", + "name": "LoggedOutEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inventoryItems", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Logger", + "namespace": "LibreMetaverse", + "name": "Logger", + "signature": "LibreMetaverse.Logger", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Logger.OnLogMessage", + "kind": "event", + "name": "OnLogMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Logger.LogCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.BeginClientScope(LibreMetaverse.GridClient)", + "kind": "method", + "name": "BeginClientScope", + "static": true, + "visibility": "public", + "type": "System.IDisposable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.BeginRegionScope(LibreMetaverse.Simulator)", + "kind": "method", + "name": "BeginRegionScope", + "static": true, + "visibility": "public", + "type": "System.IDisposable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.BeginScope(System.Object)", + "kind": "method", + "name": "BeginScope", + "static": true, + "visibility": "public", + "type": "System.IDisposable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "state", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.CreateDefaultConsoleLoggerFactory", + "kind": "method", + "name": "CreateDefaultConsoleLoggerFactory", + "static": true, + "visibility": "public", + "type": "Microsoft.Extensions.Logging.ILoggerFactory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Critical", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Critical", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,System.String)", + "kind": "method", + "name": "Critical", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.String)", + "kind": "method", + "name": "Critical", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Debug", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Debug", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,System.String)", + "kind": "method", + "name": "Debug", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.String)", + "kind": "method", + "name": "Debug", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.DebugLog(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "DebugLog", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.ConditionalAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "DEBUG" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Error(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Error", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Error", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,System.String)", + "kind": "method", + "name": "Error", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.String)", + "kind": "method", + "name": "Error", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Info(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Info", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Info", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,System.String)", + "kind": "method", + "name": "Info", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.String)", + "kind": "method", + "name": "Info", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", + "kind": "method", + "name": "IsEnabled", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Log", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient,System.Exception)", + "kind": "method", + "name": "Log", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,System.Exception)", + "kind": "method", + "name": "Log", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.SetLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", + "kind": "method", + "name": "SetLoggerFactory", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "factory", + "type": "Microsoft.Extensions.Logging.ILoggerFactory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Shutdown", + "kind": "method", + "name": "Shutdown", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.ShutdownAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)", + "kind": "method", + "name": "ShutdownAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "timeout", + "type": "System.Nullable\u003CSystem.TimeSpan\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.TimeSpan\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Logger.\u003CShutdownAsync\u003Ed__12" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Trace", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Trace", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,System.String)", + "kind": "method", + "name": "Trace", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.String)", + "kind": "method", + "name": "Trace", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.UseClientScopeAsync(LibreMetaverse.GridClient,System.Func{System.Threading.Tasks.Task})", + "kind": "method", + "name": "UseClientScopeAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Func\u003CSystem.Threading.Tasks.Task\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Logger.\u003CUseClientScopeAsync\u003Ed__21" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.UseRegionScopeAsync(LibreMetaverse.Simulator,System.Func{System.Threading.Tasks.Task})", + "kind": "method", + "name": "UseRegionScopeAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Func\u003CSystem.Threading.Tasks.Task\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Logger.\u003CUseRegionScopeAsync\u003Ed__22" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.UseScopeAsync(System.Object,System.Func{System.Threading.Tasks.Task})", + "kind": "method", + "name": "UseScopeAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "state", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Func\u003CSystem.Threading.Tasks.Task\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Logger.\u003CUseScopeAsync\u003Ed__23" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Warn", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Warn", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,System.String)", + "kind": "method", + "name": "Warn", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "exception", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.String)", + "kind": "method", + "name": "Warn", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Logger.LogCallback", + "namespace": "LibreMetaverse", + "name": "LogCallback", + "signature": "LibreMetaverse.Logger.LogCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Logger.LogCallback.Invoke(System.Object,Microsoft.Extensions.Logging.LogLevel)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Logger.LogCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "LogCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.LogCallback.BeginInvoke(System.Object,Microsoft.Extensions.Logging.LogLevel,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.LogCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Logger.LogCallback.Invoke(System.Object,Microsoft.Extensions.Logging.LogLevel)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoggingSettings", + "namespace": "LibreMetaverse", + "name": "LoggingSettings", + "signature": "LibreMetaverse.LoggingSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LoggingSettings.LogDiskCache", + "kind": "field", + "name": "LogDiskCache", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoggingSettings.LogNames", + "kind": "field", + "name": "LogNames", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoggingSettings.LogResends", + "kind": "field", + "name": "LogResends", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoggingSettings.#ctor", + "kind": "constructor", + "name": "LoggingSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginCredential", + "namespace": "LibreMetaverse", + "name": "LoginCredential", + "signature": "LibreMetaverse.LoginCredential", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String)", + "kind": "constructor", + "name": "LoginCredential", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "first", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "last", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "passwd", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String,System.String,System.String)", + "kind": "constructor", + "name": "LoginCredential", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "first", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "last", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "passwd", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "token", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mfaHash", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginCredential.FirstName", + "kind": "property", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginCredential.LastName", + "kind": "property", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginCredential.MfaHash", + "kind": "property", + "name": "MfaHash", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginCredential.Password", + "kind": "property", + "name": "Password", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginCredential.Token", + "kind": "property", + "name": "Token", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginException", + "namespace": "LibreMetaverse", + "name": "LoginException", + "signature": "LibreMetaverse.LoginException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoginException.#ctor(System.String)", + "kind": "constructor", + "name": "LoginException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginException.#ctor(System.String,System.Exception)", + "kind": "constructor", + "name": "LoginException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "innerException", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginParams", + "namespace": "LibreMetaverse", + "name": "LoginParams", + "signature": "LibreMetaverse.LoginParams", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.LoginParams.AgreeToTos", + "kind": "field", + "name": "AgreeToTos", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Author", + "kind": "field", + "name": "Author", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Channel", + "kind": "field", + "name": "Channel", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.ID0", + "kind": "field", + "name": "ID0", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.LastExecEvent", + "kind": "field", + "name": "LastExecEvent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LastExecStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.LoginLocation", + "kind": "field", + "name": "LoginLocation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.MAC", + "kind": "field", + "name": "MAC", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.MethodName", + "kind": "field", + "name": "MethodName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.MfaEnabled", + "kind": "field", + "name": "MfaEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.MfaHash", + "kind": "field", + "name": "MfaHash", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Options", + "kind": "field", + "name": "Options", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Password", + "kind": "field", + "name": "Password", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Platform", + "kind": "field", + "name": "Platform", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.PlatformVersion", + "kind": "field", + "name": "PlatformVersion", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.ReadCritical", + "kind": "field", + "name": "ReadCritical", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Start", + "kind": "field", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Timeout", + "kind": "field", + "name": "Timeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Token", + "kind": "field", + "name": "Token", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.URI", + "kind": "field", + "name": "URI", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.UserAgent", + "kind": "field", + "name": "UserAgent", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.Version", + "kind": "field", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginParams.ViewerDigest", + "kind": "field", + "name": "ViewerDigest", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginParams.#ctor", + "kind": "constructor", + "name": "LoginParams", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String)", + "kind": "constructor", + "name": "LoginParams", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "credential", + "type": "LibreMetaverse.LoginCredential", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String,System.String)", + "kind": "constructor", + "name": "LoginParams", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "credential", + "type": "LibreMetaverse.LoginCredential", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "loginUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String)", + "kind": "constructor", + "name": "LoginParams", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "kind": "constructor", + "name": "LoginParams", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "loginURI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginProgressEventArgs", + "namespace": "LibreMetaverse", + "name": "LoginProgressEventArgs", + "signature": "LibreMetaverse.LoginProgressEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoginProgressEventArgs.#ctor(LibreMetaverse.LoginStatus,System.String,System.String)", + "kind": "constructor", + "name": "LoginProgressEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "login", + "type": "LibreMetaverse.LoginStatus", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "failReason", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginProgressEventArgs.FailReason", + "kind": "property", + "name": "FailReason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginProgressEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginProgressEventArgs.Status", + "kind": "property", + "name": "Status", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginResponseData", + "namespace": "LibreMetaverse", + "name": "LoginResponseData", + "signature": "LibreMetaverse.LoginResponseData", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoginResponseData.#ctor", + "kind": "constructor", + "name": "LoginResponseData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.Parse(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Parse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData.ParseResult", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.Parse(System.Collections.Hashtable)", + "kind": "method", + "name": "Parse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData.ParseResult", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventoryFolders(System.String,LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseInventoryFolders", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "owner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventorySkeleton(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseInventorySkeleton", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventorySkeleton(System.String,System.Collections.Hashtable)", + "kind": "method", + "name": "ParseInventorySkeleton", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseMappedUUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "key2", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,System.Collections.Hashtable)", + "kind": "method", + "name": "ParseMappedUUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "key2", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,System.Collections.Hashtable)", + "kind": "method", + "name": "ParseString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseUInt", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,System.Collections.Hashtable)", + "kind": "method", + "name": "ParseUInt", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseUUID(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseUUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseUUID(System.String,System.Collections.Hashtable)", + "kind": "method", + "name": "ParseUUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseVector3(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "ParseVector3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseVector3(System.String,System.Collections.Hashtable)", + "kind": "method", + "name": "ParseVector3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reply", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AccountLevelBenefits", + "kind": "property", + "name": "AccountLevelBenefits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AccountLevelBenefits", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AccountType", + "kind": "property", + "name": "AccountType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AgentAccess", + "kind": "property", + "name": "AgentAccess", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AgentAccessMax", + "kind": "property", + "name": "AgentAccessMax", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AgentAppearanceServiceURL", + "kind": "property", + "name": "AgentAppearanceServiceURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AgentID", + "kind": "property", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.AgentRegionAccess", + "kind": "property", + "name": "AgentRegionAccess", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.BuddyList", + "kind": "property", + "name": "BuddyList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.BuddyListEntry[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.COFVersion", + "kind": "property", + "name": "COFVersion", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.CircuitCode", + "kind": "property", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ClassifiedCategories", + "kind": "property", + "name": "ClassifiedCategories", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Object\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.EventCategories", + "kind": "property", + "name": "EventCategories", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Object\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.FirstLogin", + "kind": "property", + "name": "FirstLogin", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.FirstName", + "kind": "property", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.Gestures", + "kind": "property", + "name": "Gestures", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.GlobalTextures", + "kind": "property", + "name": "GlobalTextures", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Object\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.Home", + "kind": "property", + "name": "Home", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.HomeInfo", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.InitialOutfit", + "kind": "property", + "name": "InitialOutfit", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.InventoryRoot", + "kind": "property", + "name": "InventoryRoot", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.InventorySkeleton", + "kind": "property", + "name": "InventorySkeleton", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.LastName", + "kind": "property", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.LibraryOwner", + "kind": "property", + "name": "LibraryOwner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.LibraryRoot", + "kind": "property", + "name": "LibraryRoot", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.LibrarySkeleton", + "kind": "property", + "name": "LibrarySkeleton", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryFolder[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.Login", + "kind": "property", + "name": "Login", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.LookAt", + "kind": "property", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.MapServerUrl", + "kind": "property", + "name": "MapServerUrl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.MaxAgentGroups", + "kind": "property", + "name": "MaxAgentGroups", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.MfaHash", + "kind": "property", + "name": "MfaHash", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.NextDuration", + "kind": "property", + "name": "NextDuration", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.NextMethod", + "kind": "property", + "name": "NextMethod", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.NextOptions", + "kind": "property", + "name": "NextOptions", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.NextUrl", + "kind": "property", + "name": "NextUrl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.OpenIDUrl", + "kind": "property", + "name": "OpenIDUrl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.PremiumPackages", + "kind": "property", + "name": "PremiumPackages", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Object\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.Reason", + "kind": "property", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.RegionSizeX", + "kind": "property", + "name": "RegionSizeX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.RegionSizeY", + "kind": "property", + "name": "RegionSizeY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.RegionX", + "kind": "property", + "name": "RegionX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.RegionY", + "kind": "property", + "name": "RegionY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SecondsSinceEpoch", + "kind": "property", + "name": "SecondsSinceEpoch", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SecureSessionID", + "kind": "property", + "name": "SecureSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SeedCapability", + "kind": "property", + "name": "SeedCapability", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SessionID", + "kind": "property", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SimIP", + "kind": "property", + "name": "SimIP", + "static": false, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SimPort", + "kind": "property", + "name": "SimPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.SnapshotConfigUrl", + "kind": "property", + "name": "SnapshotConfigUrl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.StartLocation", + "kind": "property", + "name": "StartLocation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.UDPBlacklist", + "kind": "property", + "name": "UDPBlacklist", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.UiConfig", + "kind": "property", + "name": "UiConfig", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Object\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessage", + "namespace": "LibreMetaverse", + "name": "ParseMessage", + "signature": "LibreMetaverse.LoginResponseData.ParseMessage", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseMessage.#ctor(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "kind": "constructor", + "name": "ParseMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ex", + "type": "System.Exception", + "passing": "value", + "optional": true, + "default": { + "type": "System.Exception" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ParseMessage.Exception", + "kind": "property", + "name": "Exception", + "static": false, + "visibility": "public", + "type": "System.Exception", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ParseMessage.Level", + "kind": "property", + "name": "Level", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ParseMessage.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessageLevel", + "namespace": "LibreMetaverse", + "name": "ParseMessageLevel", + "signature": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.LoginResponseData.ParseMessageLevel.Error", + "kind": "enum_value", + "name": "Error", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginResponseData.ParseMessageLevel.Info", + "kind": "enum_value", + "name": "Info", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginResponseData.ParseMessageLevel.Warning", + "kind": "enum_value", + "name": "Warning", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginResponseData.ParseResult", + "namespace": "LibreMetaverse", + "name": "ParseResult", + "signature": "LibreMetaverse.LoginResponseData.ParseResult", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseResult.#ctor", + "kind": "constructor", + "name": "ParseResult", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LoginResponseData.ParseResult.Add(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "LibreMetaverse.LoginResponseData.ParseMessageLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ex", + "type": "System.Exception", + "passing": "value", + "optional": true, + "default": { + "type": "System.Exception" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ParseResult.Messages", + "kind": "property", + "name": "Messages", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.LoginResponseData.ParseMessage\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ParseResult.ParsedData", + "kind": "property", + "name": "ParsedData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.LoginResponseData.ParseResult.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginState", + "namespace": "LibreMetaverse", + "name": "LoginState", + "signature": "LibreMetaverse.LoginState", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LoginState.False", + "kind": "enum_value", + "name": "False", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginState", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginState.Indeterminate", + "kind": "enum_value", + "name": "Indeterminate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginState", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginState.True", + "kind": "enum_value", + "name": "True", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LoginStatus", + "namespace": "LibreMetaverse", + "name": "LoginStatus", + "signature": "LibreMetaverse.LoginStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LoginStatus.ConnectingToLogin", + "kind": "enum_value", + "name": "ConnectingToLogin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginStatus.ConnectingToSim", + "kind": "enum_value", + "name": "ConnectingToSim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginStatus.Failed", + "kind": "enum_value", + "name": "Failed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginStatus.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginStatus.ReadingResponse", + "kind": "enum_value", + "name": "ReadingResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginStatus.Redirecting", + "kind": "enum_value", + "name": "Redirecting", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LoginStatus.Success", + "kind": "enum_value", + "name": "Success", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LoginStatus", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LookAtType", + "namespace": "LibreMetaverse", + "name": "LookAtType", + "signature": "LibreMetaverse.LookAtType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LookAtType.AutoListen", + "kind": "enum_value", + "name": "AutoListen", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Clear", + "kind": "enum_value", + "name": "Clear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Conversation", + "kind": "enum_value", + "name": "Conversation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "System.ObsoleteAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Focus", + "kind": "enum_value", + "name": "Focus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.FreeLook", + "kind": "enum_value", + "name": "FreeLook", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Hover", + "kind": "enum_value", + "name": "Hover", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Idle", + "kind": "enum_value", + "name": "Idle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Mouselook", + "kind": "enum_value", + "name": "Mouselook", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Respond", + "kind": "enum_value", + "name": "Respond", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LookAtType.Select", + "kind": "enum_value", + "name": "Select", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LookAtType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslSyntax", + "namespace": "LibreMetaverse", + "name": "LslSyntax", + "signature": "LibreMetaverse.LslSyntax", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.LslSyntax.SyntaxChanged", + "kind": "event", + "name": "SyntaxChanged", + "static": false, + "visibility": "public", + "type": "System.EventHandler", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslSyntax.#ctor", + "kind": "constructor", + "name": "LslSyntax", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslSyntax.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "LslSyntax", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslSyntax.Register(LibreMetaverse.GridClient)", + "kind": "method", + "name": "Register", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslSyntax.Keywords", + "kind": "property", + "name": "Keywords", + "static": true, + "visibility": "public", + "type": "System.Collections.Frozen.FrozenDictionary\u003CSystem.String, LibreMetaverse.LslSyntax.LslKeyword\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslSyntax.LslCategory", + "namespace": "LibreMetaverse", + "name": "LslCategory", + "signature": "LibreMetaverse.LslSyntax.LslCategory", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Constant", + "kind": "enum_value", + "name": "Constant", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Control", + "kind": "enum_value", + "name": "Control", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Datatype", + "kind": "enum_value", + "name": "Datatype", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Event", + "kind": "enum_value", + "name": "Event", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Flow", + "kind": "enum_value", + "name": "Flow", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Function", + "kind": "enum_value", + "name": "Function", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslCategory.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslSyntax.LslCategory", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslSyntax.LslKeyword", + "namespace": "LibreMetaverse", + "name": "LslKeyword", + "signature": "LibreMetaverse.LslSyntax.LslKeyword", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslSyntax.LslCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Deprecated", + "kind": "field", + "name": "Deprecated", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.GodMode", + "kind": "field", + "name": "GodMode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Keyword", + "kind": "field", + "name": "Keyword", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Tooltip", + "kind": "field", + "name": "Tooltip", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapAdultEvent", + "namespace": "LibreMetaverse", + "name": "MapAdultEvent", + "signature": "LibreMetaverse.MapAdultEvent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapAdultEvent.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapAdultEvent.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapAdultEvent.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapAdultEvent.#ctor", + "kind": "constructor", + "name": "MapAdultEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapAdultLandForSale", + "namespace": "LibreMetaverse", + "name": "MapAdultLandForSale", + "signature": "LibreMetaverse.MapAdultLandForSale", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapAdultLandForSale.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapAdultLandForSale.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapAdultLandForSale.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapAdultLandForSale.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapAdultLandForSale.#ctor", + "kind": "constructor", + "name": "MapAdultLandForSale", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapAgentLocation", + "namespace": "LibreMetaverse", + "name": "MapAgentLocation", + "signature": "LibreMetaverse.MapAgentLocation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapAgentLocation.AvatarCount", + "kind": "field", + "name": "AvatarCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapAgentLocation.Identifier", + "kind": "field", + "name": "Identifier", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.MapAgentLocation.#ctor", + "kind": "constructor", + "name": "MapAgentLocation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapBlock", + "namespace": "LibreMetaverse", + "name": "MapBlock", + "signature": "LibreMetaverse.MapBlock", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IComparable" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapBlock.Count", + "kind": "field", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapBlock.Fields", + "kind": "field", + "name": "Fields", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.MapField\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapBlock.KeywordPosition", + "kind": "field", + "name": "KeywordPosition", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.MapBlock.#ctor", + "kind": "constructor", + "name": "MapBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapBlock.CompareTo(System.Object)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapField", + "namespace": "LibreMetaverse", + "name": "MapField", + "signature": "LibreMetaverse.MapField", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IComparable" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapField.Count", + "kind": "field", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapField.KeywordPosition", + "kind": "field", + "name": "KeywordPosition", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapField.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapField.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FieldType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapField.#ctor", + "kind": "constructor", + "name": "MapField", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapField.CompareTo(System.Object)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapItem", + "namespace": "LibreMetaverse", + "name": "MapItem", + "signature": "LibreMetaverse.MapItem", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapItem.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapItem.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MapItem.LocalX", + "kind": "property", + "name": "LocalX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MapItem.LocalY", + "kind": "property", + "name": "LocalY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MapItem.RegionHandle", + "kind": "property", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapLandForSale", + "namespace": "LibreMetaverse", + "name": "MapLandForSale", + "signature": "LibreMetaverse.MapLandForSale", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapLandForSale.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapLandForSale.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapLandForSale.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapLandForSale.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapLandForSale.#ctor", + "kind": "constructor", + "name": "MapLandForSale", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapMatureEvent", + "namespace": "LibreMetaverse", + "name": "MapMatureEvent", + "signature": "LibreMetaverse.MapMatureEvent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapMatureEvent.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapMatureEvent.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapMatureEvent.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapMatureEvent.#ctor", + "kind": "constructor", + "name": "MapMatureEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapPGEvent", + "namespace": "LibreMetaverse", + "name": "MapPGEvent", + "signature": "LibreMetaverse.MapPGEvent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapPGEvent.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventCategories", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapPGEvent.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MapPGEvent.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DirectoryManager.EventFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapPGEvent.#ctor", + "kind": "constructor", + "name": "MapPGEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapPacket", + "namespace": "LibreMetaverse", + "name": "MapPacket", + "signature": "LibreMetaverse.MapPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.MapPacket.Blocks", + "kind": "field", + "name": "Blocks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.MapBlock\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapPacket.Encoded", + "kind": "field", + "name": "Encoded", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapPacket.Frequency", + "kind": "field", + "name": "Frequency", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PacketFrequency", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapPacket.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapPacket.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MapPacket.Trusted", + "kind": "field", + "name": "Trusted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MapPacket.#ctor", + "kind": "constructor", + "name": "MapPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MapTelehub", + "namespace": "LibreMetaverse", + "name": "MapTelehub", + "signature": "LibreMetaverse.MapTelehub", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.MapItem", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.MapTelehub.#ctor", + "kind": "constructor", + "name": "MapTelehub", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MappingType", + "namespace": "LibreMetaverse", + "name": "MappingType", + "signature": "LibreMetaverse.MappingType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MappingType.Cylindrical", + "kind": "enum_value", + "name": "Cylindrical", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MappingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MappingType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MappingType.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MappingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MappingType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MappingType.Planar", + "kind": "enum_value", + "name": "Planar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MappingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MappingType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MappingType.Spherical", + "kind": "enum_value", + "name": "Spherical", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MappingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MappingType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceErrorEventArgs", + "signature": "LibreMetaverse.Marketplace.MarketplaceErrorEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.#ctor(System.String,System.Exception)", + "kind": "constructor", + "name": "MarketplaceErrorEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ex", + "type": "System.Exception", + "passing": "value", + "optional": true, + "default": { + "type": "System.Exception" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.Exception", + "kind": "property", + "name": "Exception", + "static": false, + "visibility": "public", + "type": "System.Exception", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderClassifier", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceFolderClassifier", + "signature": "LibreMetaverse.Marketplace.MarketplaceFolderClassifier", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetAllListingFolderIds(LibreMetaverse.Inventory)", + "kind": "method", + "name": "GetAllListingFolderIds", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetListingFolder(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "kind": "method", + "name": "GetListingFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetListingsRoot(LibreMetaverse.Inventory)", + "kind": "method", + "name": "GetListingsRoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetRole(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "kind": "method", + "name": "GetRole", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetStockCount(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "kind": "method", + "name": "GetStockCount", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "versionFolderUUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetVersionFolder(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "kind": "method", + "name": "GetVersionFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingFolderUUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.IsMarketplaceFolder(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "kind": "method", + "name": "IsMarketplaceFolder", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.ValidateListing(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "kind": "method", + "name": "ValidateListing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingFolderUUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inventory", + "type": "LibreMetaverse.Inventory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderRole", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceFolderRole", + "signature": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceFolderRole.Content", + "kind": "enum_value", + "name": "Content", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceFolderRole.Listing", + "kind": "enum_value", + "name": "Listing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceFolderRole.ListingsRoot", + "kind": "enum_value", + "name": "ListingsRoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceFolderRole.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceFolderRole.Stock", + "kind": "enum_value", + "name": "Stock", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceFolderRole.Version", + "kind": "enum_value", + "name": "Version", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceFolderRole", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListing", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceListing", + "signature": "LibreMetaverse.Marketplace.MarketplaceListing", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceListing.#ctor", + "kind": "constructor", + "name": "MarketplaceListing", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.EditUrl", + "kind": "property", + "name": "EditUrl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.LastSyncUtc", + "kind": "property", + "name": "LastSyncUtc", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.ListingFolderUUID", + "kind": "property", + "name": "ListingFolderUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.ListingId", + "kind": "property", + "name": "ListingId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.Status", + "kind": "property", + "name": "Status", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.StockCount", + "kind": "property", + "name": "StockCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.VersionFolderUUID", + "kind": "property", + "name": "VersionFolderUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceListingChangedEventArgs", + "signature": "LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs.#ctor(System.Int32,LibreMetaverse.Marketplace.MarketplaceListing)", + "kind": "constructor", + "name": "MarketplaceListingChangedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "listing", + "type": "LibreMetaverse.Marketplace.MarketplaceListing", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Marketplace.MarketplaceListing" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs.Listing", + "kind": "property", + "name": "Listing", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceListing", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs.ListingId", + "kind": "property", + "name": "ListingId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingStatus", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceListingStatus", + "signature": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceListingStatus.Listed", + "kind": "enum_value", + "name": "Listed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceListingStatus.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceListingStatus.Unlisted", + "kind": "enum_value", + "name": "Unlisted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceListingStatus", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceListingsSyncedEventArgs", + "signature": "LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.Marketplace.MarketplaceListing})", + "kind": "constructor", + "name": "MarketplaceListingsSyncedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listings", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Marketplace.MarketplaceListing\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs.Listings", + "kind": "property", + "name": "Listings", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Marketplace.MarketplaceListing\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceManager", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceManager", + "signature": "LibreMetaverse.Marketplace.MarketplaceManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Marketplace.MarketplaceManager.Error", + "kind": "event", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Marketplace.MarketplaceErrorEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Marketplace.MarketplaceManager.ListingChanged", + "kind": "event", + "name": "ListingChanged", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Marketplace.MarketplaceManager.ListingsSynced", + "kind": "event", + "name": "ListingsSynced", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "MarketplaceManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.ActivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "ActivateListingAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.CreateListingAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "CreateListingAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Marketplace.MarketplaceListing\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingFolderUUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "versionFolderUUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "countOnHand", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Marketplace.MarketplaceManager.\u003CCreateListingAsync\u003Ed__24" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeactivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "DeactivateListingAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeleteListingAsync(System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "DeleteListingAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Marketplace.MarketplaceManager.\u003CDeleteListingAsync\u003Ed__25" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.FetchListingsAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "FetchListingsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Marketplace.MarketplaceManager.\u003CFetchListingsAsync\u003Ed__23" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.TryGetByFolder(LibreMetaverse.UUID,LibreMetaverse.Marketplace.MarketplaceListing@)", + "kind": "method", + "name": "TryGetByFolder", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderUUID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "listing", + "type": "LibreMetaverse.Marketplace.MarketplaceListing\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.TryGetById(System.Int32,LibreMetaverse.Marketplace.MarketplaceListing@)", + "kind": "method", + "name": "TryGetById", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "listingId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "listing", + "type": "LibreMetaverse.Marketplace.MarketplaceListing\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceManager.ListingsByFolder", + "kind": "property", + "name": "ListingsByFolder", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Marketplace.MarketplaceListing\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Marketplace.MarketplaceManager.ListingsById", + "kind": "property", + "name": "ListingsById", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, LibreMetaverse.Marketplace.MarketplaceListing\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "namespace": "LibreMetaverse.Marketplace", + "name": "MarketplaceValidationFlags", + "signature": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.EmptyListing", + "kind": "enum_value", + "name": "EmptyListing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.InvalidStructure", + "kind": "enum_value", + "name": "InvalidStructure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.MissingVersionFolder", + "kind": "enum_value", + "name": "MissingVersionFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.MultipleVersionFolders", + "kind": "enum_value", + "name": "MultipleVersionFolders", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.NotRegisteredWithServer", + "kind": "enum_value", + "name": "NotRegisteredWithServer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.ServerMetadataMismatch", + "kind": "enum_value", + "name": "ServerMetadataMismatch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Marketplace.MarketplaceValidationFlags.Valid", + "kind": "enum_value", + "name": "Valid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Materials.LegacyMaterial", + "namespace": "LibreMetaverse.Materials", + "name": "LegacyMaterial", + "signature": "LibreMetaverse.Materials.LegacyMaterial", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Materials.LegacyMaterial.#ctor", + "kind": "constructor", + "name": "LegacyMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Materials.LegacyMaterial.#ctor(LibreMetaverse.StructuredData.OSDMap)", + "kind": "constructor", + "name": "LegacyMaterial", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mapOrig", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.AlphaMaskCutoff", + "kind": "property", + "name": "AlphaMaskCutoff", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.DiffuseAlphaMode", + "kind": "property", + "name": "DiffuseAlphaMode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.EnvironmentIntensity", + "kind": "property", + "name": "EnvironmentIntensity", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.ID", + "kind": "property", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMap", + "kind": "property", + "name": "NormalMap", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapOffsetX", + "kind": "property", + "name": "NormalMapOffsetX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapOffsetY", + "kind": "property", + "name": "NormalMapOffsetY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapRepeatX", + "kind": "property", + "name": "NormalMapRepeatX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapRepeatY", + "kind": "property", + "name": "NormalMapRepeatY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapRotation", + "kind": "property", + "name": "NormalMapRotation", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularColor", + "kind": "property", + "name": "SpecularColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularExponent", + "kind": "property", + "name": "SpecularExponent", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMap", + "kind": "property", + "name": "SpecularMap", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapOffsetX", + "kind": "property", + "name": "SpecularMapOffsetX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapOffsetY", + "kind": "property", + "name": "SpecularMapOffsetY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapRepeatX", + "kind": "property", + "name": "SpecularMapRepeatX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapRepeatY", + "kind": "property", + "name": "SpecularMapRepeatY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapRotation", + "kind": "property", + "name": "SpecularMapRotation", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "namespace": "LibreMetaverse.Materials", + "name": "LegacyMaterialAlphaMode", + "signature": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Materials.LegacyMaterialAlphaMode.Blend", + "kind": "enum_value", + "name": "Blend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Materials.LegacyMaterialAlphaMode.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Materials.LegacyMaterialAlphaMode.Emissive", + "kind": "enum_value", + "name": "Emissive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Materials.LegacyMaterialAlphaMode.Mask", + "kind": "enum_value", + "name": "Mask", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Materials.LegacyMaterialAlphaMode.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MeanCollisionEventArgs", + "namespace": "LibreMetaverse", + "name": "MeanCollisionEventArgs", + "signature": "LibreMetaverse.MeanCollisionEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.MeanCollisionEventArgs.#ctor(LibreMetaverse.MeanCollisionType,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,System.DateTime)", + "kind": "constructor", + "name": "MeanCollisionEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.MeanCollisionType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "perp", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "victim", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "magnitude", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "time", + "type": "System.DateTime", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Aggressor", + "kind": "property", + "name": "Aggressor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Magnitude", + "kind": "property", + "name": "Magnitude", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Time", + "kind": "property", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Victim", + "kind": "property", + "name": "Victim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MeanCollisionType", + "namespace": "LibreMetaverse", + "name": "MeanCollisionType", + "signature": "LibreMetaverse.MeanCollisionType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MeanCollisionType.Bump", + "kind": "enum_value", + "name": "Bump", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MeanCollisionType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MeanCollisionType.LLPushObject", + "kind": "enum_value", + "name": "LLPushObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MeanCollisionType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MeanCollisionType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MeanCollisionType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MeanCollisionType.PhysicalObjectCollide", + "kind": "enum_value", + "name": "PhysicalObjectCollide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MeanCollisionType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MeanCollisionType.ScriptedObjectCollide", + "kind": "enum_value", + "name": "ScriptedObjectCollide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MeanCollisionType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MeanCollisionType.SelectedObjectCollide", + "kind": "enum_value", + "name": "SelectedObjectCollide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MeanCollisionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MeanCollisionType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MediaControls", + "namespace": "LibreMetaverse", + "name": "MediaControls", + "signature": "LibreMetaverse.MediaControls", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MediaControls.Mini", + "kind": "enum_value", + "name": "Mini", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaControls", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaControls", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaControls.Standard", + "kind": "enum_value", + "name": "Standard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaControls", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaControls", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MediaEntry", + "namespace": "LibreMetaverse", + "name": "MediaEntry", + "signature": "LibreMetaverse.MediaEntry", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.MediaEntry.AutoLoop", + "kind": "field", + "name": "AutoLoop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.AutoPlay", + "kind": "field", + "name": "AutoPlay", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.AutoScale", + "kind": "field", + "name": "AutoScale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.AutoZoom", + "kind": "field", + "name": "AutoZoom", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.ControlPermissions", + "kind": "field", + "name": "ControlPermissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.Controls", + "kind": "field", + "name": "Controls", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaControls", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.CurrentURL", + "kind": "field", + "name": "CurrentURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.EnableWhiteList", + "kind": "field", + "name": "EnableWhiteList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.Height", + "kind": "field", + "name": "Height", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.HomeURL", + "kind": "field", + "name": "HomeURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.InteractOnFirstClick", + "kind": "field", + "name": "InteractOnFirstClick", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.InteractPermissions", + "kind": "field", + "name": "InteractPermissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.WhiteList", + "kind": "field", + "name": "WhiteList", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaEntry.Width", + "kind": "field", + "name": "Width", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MediaEntry.#ctor", + "kind": "constructor", + "name": "MediaEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MediaEntry.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaEntry", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MediaEntry.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MediaEntry.EnableAlternativeImage", + "kind": "property", + "name": "EnableAlternativeImage", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MediaPermission", + "namespace": "LibreMetaverse", + "name": "MediaPermission", + "signature": "LibreMetaverse.MediaPermission", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.MediaPermission.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaPermission", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaPermission.Anyone", + "kind": "enum_value", + "name": "Anyone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaPermission", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaPermission.Group", + "kind": "enum_value", + "name": "Group", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaPermission", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaPermission.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaPermission", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MediaPermission.Owner", + "kind": "enum_value", + "name": "Owner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MediaPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MediaPermission", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentDropGroupMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentDropGroupMessage", + "signature": "LibreMetaverse.Messages.Linden.AgentDropGroupMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentDataBlock", + "kind": "field", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.#ctor", + "kind": "constructor", + "name": "AgentDropGroupMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentData", + "signature": "LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData.#ctor", + "kind": "constructor", + "name": "AgentData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentGroupDataUpdateMessage", + "signature": "LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupDataBlock", + "kind": "field", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupDataBlock", + "kind": "field", + "name": "NewGroupDataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.#ctor", + "kind": "constructor", + "name": "AgentGroupDataUpdateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "GroupData", + "signature": "LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.Contribution", + "kind": "field", + "name": "Contribution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupInsigniaID", + "kind": "field", + "name": "GroupInsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupPowers", + "kind": "field", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GroupPowers", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupTitle", + "kind": "field", + "name": "GroupTitle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.#ctor", + "kind": "constructor", + "name": "GroupData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NewGroupData", + "signature": "LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData.ListInProfile", + "kind": "field", + "name": "ListInProfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData.#ctor", + "kind": "constructor", + "name": "NewGroupData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentPreferencesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentPreferencesMessage", + "signature": "LibreMetaverse.Messages.Linden.AgentPreferencesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.HoverHeight", + "kind": "field", + "name": "HoverHeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.RawData", + "kind": "field", + "name": "RawData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.#ctor", + "kind": "constructor", + "name": "AgentPreferencesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentProfileMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentProfileMessage", + "signature": "LibreMetaverse.Messages.Linden.AgentProfileMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.AllowedMaturity", + "kind": "field", + "name": "AllowedMaturity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CaptionIndex", + "kind": "field", + "name": "CaptionIndex", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CaptionText", + "kind": "field", + "name": "CaptionText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CustomerType", + "kind": "field", + "name": "CustomerType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.DisplayName", + "kind": "field", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.DisplayNameNextUpdate", + "kind": "field", + "name": "DisplayNameNextUpdate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.FirstLifeAboutText", + "kind": "field", + "name": "FirstLifeAboutText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.FirstLifeImageID", + "kind": "field", + "name": "FirstLifeImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Groups", + "kind": "field", + "name": "Groups", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.HideAge", + "kind": "field", + "name": "HideAge", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.HomePage", + "kind": "field", + "name": "HomePage", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.IsDisplayNameDefault", + "kind": "field", + "name": "IsDisplayNameDefault", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.IsMatureProfile", + "kind": "field", + "name": "IsMatureProfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.LegacyFirstName", + "kind": "field", + "name": "LegacyFirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.LegacyLastName", + "kind": "field", + "name": "LegacyLastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.MemberSince", + "kind": "field", + "name": "MemberSince", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Notes", + "kind": "field", + "name": "Notes", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PartnerID", + "kind": "field", + "name": "PartnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Picks", + "kind": "field", + "name": "Picks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.AgentProfileMessage.PickData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PreferredMaturity", + "kind": "field", + "name": "PreferredMaturity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.SecondLifeAboutText", + "kind": "field", + "name": "SecondLifeAboutText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.SecondLifeImageID", + "kind": "field", + "name": "SecondLifeImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Username", + "kind": "field", + "name": "Username", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentProfileMessage.#ctor", + "kind": "constructor", + "name": "AgentProfileMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentProfileMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentProfileMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "GroupData", + "signature": "LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.FounderID", + "kind": "field", + "name": "FounderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.IsMaturePublish", + "kind": "field", + "name": "IsMaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.IsOpenEnrollment", + "kind": "field", + "name": "IsOpenEnrollment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.IsShownInSearch", + "kind": "field", + "name": "IsShownInSearch", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.#ctor", + "kind": "constructor", + "name": "GroupData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "PickData", + "signature": "LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.ParcelName", + "kind": "field", + "name": "ParcelName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionName", + "kind": "field", + "name": "RegionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionX", + "kind": "field", + "name": "RegionX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionY", + "kind": "field", + "name": "RegionY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionZ", + "kind": "field", + "name": "RegionZ", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Slurl", + "kind": "field", + "name": "Slurl", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.#ctor", + "kind": "constructor", + "name": "PickData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentStateUpdateMessage", + "signature": "LibreMetaverse.Messages.Linden.AgentStateUpdateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.AlterNavmeshObjects", + "kind": "field", + "name": "AlterNavmeshObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.AlterPermanentObjects", + "kind": "field", + "name": "AlterPermanentObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.CanModifyNavmesh", + "kind": "field", + "name": "CanModifyNavmesh", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.GodLevel", + "kind": "field", + "name": "GodLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.HasModifiedNavmesh", + "kind": "field", + "name": "HasModifiedNavmesh", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.Language", + "kind": "field", + "name": "Language", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.LanguageIsPublic", + "kind": "field", + "name": "LanguageIsPublic", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.MaxAccess", + "kind": "field", + "name": "MaxAccess", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.RawData", + "kind": "field", + "name": "RawData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.#ctor", + "kind": "constructor", + "name": "AgentStateUpdateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AssetUploaderBlock", + "signature": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AssetUploaderBlock.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AssetUploaderBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AssetUploaderBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AttachmentResourcesMessage", + "signature": "LibreMetaverse.Messages.Linden.AttachmentResourcesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.BaseResourcesInfo", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.Attachments", + "kind": "field", + "name": "Attachments", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.AttachmentPoint, LibreMetaverse.Messages.Linden.ObjectResourcesDetail[]\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.#ctor", + "kind": "constructor", + "name": "AttachmentResourcesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AttachmentResourcesMessage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.GetMessageHandler(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "GetMessageHandler", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Interfaces.IMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AvatarRenderInfoMessage", + "signature": "LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.Agents", + "kind": "field", + "name": "Agents", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.OverLimit", + "kind": "field", + "name": "OverLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.ReportingLimit", + "kind": "field", + "name": "ReportingLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.#ctor", + "kind": "constructor", + "name": "AvatarRenderInfoMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AvatarInfo", + "signature": "LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo.TooComplex", + "kind": "field", + "name": "TooComplex", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo.Weight", + "kind": "field", + "name": "Weight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo.#ctor", + "kind": "constructor", + "name": "AvatarInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.BaseResourcesInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "BaseResourcesInfo", + "signature": "LibreMetaverse.Messages.Linden.BaseResourcesInfo", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryAvailable", + "kind": "field", + "name": "SummaryAvailable", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryUsed", + "kind": "field", + "name": "SummaryUsed", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BaseResourcesInfo.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BaseResourcesInfo.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "BulkUpdateInventoryMessage", + "signature": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemData", + "kind": "field", + "name": "ItemData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.#ctor", + "kind": "constructor", + "name": "BulkUpdateInventoryMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "FolderDataInfo", + "signature": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.#ctor", + "kind": "constructor", + "name": "FolderDataInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ItemDataInfo", + "signature": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.#ctor", + "kind": "constructor", + "name": "ItemDataInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatSessionAcceptInvitation", + "signature": "LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation.#ctor", + "kind": "constructor", + "name": "ChatSessionAcceptInvitation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatSessionRequestBlock", + "signature": "LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatSessionRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.ChatSessionRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage.#ctor", + "kind": "constructor", + "name": "ChatSessionRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatSessionRequestMuteUpdate", + "signature": "LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.RequestKey", + "kind": "field", + "name": "RequestKey", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.RequestValue", + "kind": "field", + "name": "RequestValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.#ctor", + "kind": "constructor", + "name": "ChatSessionRequestMuteUpdate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatSessionRequestStartConference", + "signature": "LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference.AgentsBlock", + "kind": "field", + "name": "AgentsBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference.#ctor", + "kind": "constructor", + "name": "ChatSessionRequestStartConference", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatterBoxInvitationMessage", + "signature": "LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.BinaryBucket", + "kind": "field", + "name": "BinaryBucket", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Dialog", + "kind": "field", + "name": "Dialog", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageDialog", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.FromAgentID", + "kind": "field", + "name": "FromAgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.FromAgentName", + "kind": "field", + "name": "FromAgentName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.GroupIM", + "kind": "field", + "name": "GroupIM", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.IMSessionID", + "kind": "field", + "name": "IMSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Offline", + "kind": "field", + "name": "Offline", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InstantMessageOnline", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Timestamp", + "kind": "field", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.ToAgentID", + "kind": "field", + "name": "ToAgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Voice", + "kind": "field", + "name": "Voice", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.VoiceChannelCredentials", + "kind": "field", + "name": "VoiceChannelCredentials", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.VoiceChannelUri", + "kind": "field", + "name": "VoiceChannelUri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.#ctor", + "kind": "constructor", + "name": "ChatterBoxInvitationMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatterBoxSessionAgentListUpdatesMessage", + "signature": "LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.Updates", + "kind": "field", + "name": "Updates", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.#ctor", + "kind": "constructor", + "name": "ChatterBoxSessionAgentListUpdatesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "AgentUpdatesBlock", + "signature": "LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.CanVoiceChat", + "kind": "field", + "name": "CanVoiceChat", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.IsModerator", + "kind": "field", + "name": "IsModerator", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.MuteText", + "kind": "field", + "name": "MuteText", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.MuteVoice", + "kind": "field", + "name": "MuteVoice", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.Transition", + "kind": "field", + "name": "Transition", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.#ctor", + "kind": "constructor", + "name": "AgentUpdatesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatterBoxSessionStartReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.ModeratedVoice", + "kind": "field", + "name": "ModeratedVoice", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.SessionName", + "kind": "field", + "name": "SessionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.TempSessionID", + "kind": "field", + "name": "TempSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.VoiceEnabled", + "kind": "field", + "name": "VoiceEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.#ctor", + "kind": "constructor", + "name": "ChatterBoxSessionStartReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ChatterboxSessionEventReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.#ctor", + "kind": "constructor", + "name": "ChatterboxSessionEventReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "CopyInventoryFromNotecardMessage", + "signature": "LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.NotecardID", + "kind": "field", + "name": "NotecardID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.#ctor", + "kind": "constructor", + "name": "CopyInventoryFromNotecardMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.CrossedRegionMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "CrossedRegionMessage", + "signature": "LibreMetaverse.Messages.Linden.CrossedRegionMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.RegionSizeX", + "kind": "field", + "name": "RegionSizeX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.RegionSizeY", + "kind": "field", + "name": "RegionSizeY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.SeedCapability", + "kind": "field", + "name": "SeedCapability", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.CrossedRegionMessage.#ctor", + "kind": "constructor", + "name": "CrossedRegionMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.CrossedRegionMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.CrossedRegionMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.DirLandReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "DirLandReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.DirLandReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DirLandReplyMessage.#ctor", + "kind": "constructor", + "name": "DirLandReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DirLandReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DirLandReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "QueryReply", + "signature": "LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.Auction", + "kind": "field", + "name": "Auction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ForSale", + "kind": "field", + "name": "ForSale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ProductSku", + "kind": "field", + "name": "ProductSku", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.#ctor", + "kind": "constructor", + "name": "QueryReply", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "DisplayNameUpdateMessage", + "signature": "LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.DisplayName", + "kind": "field", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentDisplayName", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.OldDisplayName", + "kind": "field", + "name": "OldDisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.#ctor", + "kind": "constructor", + "name": "DisplayNameUpdateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EnableSimulatorMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EnableSimulatorMessage", + "signature": "LibreMetaverse.Messages.Linden.EnableSimulatorMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.Simulators", + "kind": "field", + "name": "Simulators", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.#ctor", + "kind": "constructor", + "name": "EnableSimulatorMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SimulatorInfoBlock", + "signature": "LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.RegionSizeX", + "kind": "field", + "name": "RegionSizeX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.RegionSizeY", + "kind": "field", + "name": "RegionSizeY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.#ctor", + "kind": "constructor", + "name": "SimulatorInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EnvironmentData", + "signature": "LibreMetaverse.Messages.Linden.EnvironmentData", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnvironmentData.#ctor", + "kind": "constructor", + "name": "EnvironmentData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnvironmentData.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EnvironmentData.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.DayCycle", + "kind": "property", + "name": "DayCycle", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.DayLength", + "kind": "property", + "name": "DayLength", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.DayOffset", + "kind": "property", + "name": "DayOffset", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.Flags", + "kind": "property", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EnvironmentFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.IsDefault", + "kind": "property", + "name": "IsDefault", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentFlags", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EnvironmentFlags", + "signature": "LibreMetaverse.Messages.Linden.EnvironmentFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnvironmentFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EnvironmentFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.EnvironmentFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EnvironmentFlags.Override", + "kind": "enum_value", + "name": "Override", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EnvironmentFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.EnvironmentFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EstablishAgentCommunicationMessage", + "signature": "LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Address", + "kind": "field", + "name": "Address", + "static": false, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.SeedCapability", + "kind": "field", + "name": "SeedCapability", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.#ctor", + "kind": "constructor", + "name": "EstablishAgentCommunicationMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EventMessageBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EventMessageBlock", + "signature": "LibreMetaverse.Messages.Linden.EventMessageBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventMessageBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventMessageBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EventQueueAck", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EventQueueAck", + "signature": "LibreMetaverse.Messages.Linden.EventQueueAck", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.EventMessageBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueAck.AckID", + "kind": "field", + "name": "AckID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueAck.Done", + "kind": "field", + "name": "Done", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueAck.#ctor", + "kind": "constructor", + "name": "EventQueueAck", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueAck.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueAck.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EventQueueEvent", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EventQueueEvent", + "signature": "LibreMetaverse.Messages.Linden.EventQueueEvent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.EventMessageBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueEvent.MessageEvents", + "kind": "field", + "name": "MessageEvents", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueEvent.Sequence", + "kind": "field", + "name": "Sequence", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueEvent.#ctor", + "kind": "constructor", + "name": "EventQueueEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueEvent.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueEvent.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "QueueEvent", + "signature": "LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent.EventMessage", + "kind": "field", + "name": "EventMessage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Interfaces.IMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent.MessageKey", + "kind": "field", + "name": "MessageKey", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent.#ctor", + "kind": "constructor", + "name": "QueueEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.EventQueueGetMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "EventQueueGetMessage", + "signature": "LibreMetaverse.Messages.Linden.EventQueueGetMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueGetMessage.Messages", + "kind": "field", + "name": "Messages", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EventMessageBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueGetMessage.#ctor", + "kind": "constructor", + "name": "EventQueueGetMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueGetMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueGetMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceFlags", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExperienceFlags", + "signature": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceFlags.Disabled", + "kind": "enum_value", + "name": "Disabled", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceFlags.Grid", + "kind": "enum_value", + "name": "Grid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceFlags.Private", + "kind": "enum_value", + "name": "Private", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceFlags.Suspended", + "kind": "enum_value", + "name": "Suspended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExperienceInfo", + "signature": "LibreMetaverse.Messages.Linden.ExperienceInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.ExperienceID", + "kind": "field", + "name": "ExperienceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.ExtendedMetadata", + "kind": "field", + "name": "ExtendedMetadata", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Marketplace", + "kind": "field", + "name": "Marketplace", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Maturity", + "kind": "field", + "name": "Maturity", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.PublicID", + "kind": "field", + "name": "PublicID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Quota", + "kind": "field", + "name": "Quota", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.SLURL", + "kind": "field", + "name": "SLURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfo.#ctor", + "kind": "constructor", + "name": "ExperienceInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfo.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExperienceInfo", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfo.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceInfoMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExperienceInfoMessage", + "signature": "LibreMetaverse.Messages.Linden.ExperienceInfoMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfoMessage.Experiences", + "kind": "field", + "name": "Experiences", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.ExperienceInfo\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfoMessage.#ctor", + "kind": "constructor", + "name": "ExperienceInfoMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfoMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfoMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceListMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExperienceListMessage", + "signature": "LibreMetaverse.Messages.Linden.ExperienceListMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceListMessage.ExperienceIDs", + "kind": "field", + "name": "ExperienceIDs", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceListMessage.#ctor", + "kind": "constructor", + "name": "ExperienceListMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceListMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceListMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExperiencePreferencesMessage", + "signature": "LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Allowed", + "kind": "field", + "name": "Allowed", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Blocked", + "kind": "field", + "name": "Blocked", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.#ctor", + "kind": "constructor", + "name": "ExperiencePreferencesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExtEnvironmentMessage", + "signature": "LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.#ctor", + "kind": "constructor", + "name": "ExtEnvironmentMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Environment", + "kind": "property", + "name": "Environment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.EnvironmentData", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.ParcelId", + "kind": "property", + "name": "ParcelId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Version", + "kind": "property", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ForceCloseChatterBoxSessionMessage", + "signature": "LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.#ctor", + "kind": "constructor", + "name": "ForceCloseChatterBoxSessionMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "GetDisplayNamesMessage", + "signature": "LibreMetaverse.Messages.Linden.GetDisplayNamesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage.Agents", + "kind": "field", + "name": "Agents", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentDisplayName[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage.BadIDs", + "kind": "field", + "name": "BadIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage.#ctor", + "kind": "constructor", + "name": "GetDisplayNamesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.GetObjectCostMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "GetObjectCostMessage", + "signature": "LibreMetaverse.Messages.Linden.GetObjectCostMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.link_cost", + "kind": "field", + "name": "link_cost", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.link_physics_cost", + "kind": "field", + "name": "link_physics_cost", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.object_cost", + "kind": "field", + "name": "object_cost", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.object_id", + "kind": "field", + "name": "object_id", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.physics_cost", + "kind": "field", + "name": "physics_cost", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostMessage.#ctor", + "kind": "constructor", + "name": "GetObjectCostMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostMessage.GetMessageHandler(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "GetMessageHandler", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Interfaces.IMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.GetObjectCostRequest", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "GetObjectCostRequest", + "signature": "LibreMetaverse.Messages.Linden.GetObjectCostRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostRequest.ObjectIDs", + "kind": "field", + "name": "ObjectIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostRequest.#ctor", + "kind": "constructor", + "name": "GetObjectCostRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostRequest.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "InterestListMessage", + "signature": "LibreMetaverse.Messages.Linden.InterestListMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.InterestListMessage.#ctor", + "kind": "constructor", + "name": "InterestListMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.InterestListMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.InterestListMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.InterestListMessage.InterestListMode", + "kind": "property", + "name": "InterestListMode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.InterestListMessage.Mode", + "kind": "property", + "name": "Mode", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMode", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "InterestListMode", + "signature": "LibreMetaverse.Messages.Linden.InterestListMode", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.InterestListMode.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.InterestListMode.Panoramic360", + "kind": "enum_value", + "name": "Panoramic360", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Messages.Linden.InterestListMode", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.LandResourcesInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "LandResourcesInfo", + "signature": "LibreMetaverse.Messages.Linden.LandResourcesInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.BaseResourcesInfo", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandResourcesInfo.Parcels", + "kind": "field", + "name": "Parcels", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ParcelResourcesDetail[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesInfo.#ctor", + "kind": "constructor", + "name": "LandResourcesInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesInfo.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.LandResourcesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "LandResourcesMessage", + "signature": "LibreMetaverse.Messages.Linden.LandResourcesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandResourcesMessage.ScriptResourceDetails", + "kind": "field", + "name": "ScriptResourceDetails", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandResourcesMessage.ScriptResourceSummary", + "kind": "field", + "name": "ScriptResourceSummary", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesMessage.#ctor", + "kind": "constructor", + "name": "LandResourcesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesMessage.GetMessageHandler(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "GetMessageHandler", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Interfaces.IMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.LandResourcesRequest", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "LandResourcesRequest", + "signature": "LibreMetaverse.Messages.Linden.LandResourcesRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandResourcesRequest.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesRequest.#ctor", + "kind": "constructor", + "name": "LandResourcesRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesRequest.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.LandStatReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "LandStatReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.LandStatReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlocks", + "kind": "field", + "name": "ReportDataBlocks", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportType", + "kind": "field", + "name": "ReportType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.RequestFlags", + "kind": "field", + "name": "RequestFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.TotalObjectCount", + "kind": "field", + "name": "TotalObjectCount", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandStatReplyMessage.#ctor", + "kind": "constructor", + "name": "LandStatReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandStatReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandStatReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ReportDataBlock", + "signature": "LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.Location", + "kind": "field", + "name": "Location", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.MonoScore", + "kind": "field", + "name": "MonoScore", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.OwnerName", + "kind": "field", + "name": "OwnerName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.Score", + "kind": "field", + "name": "Score", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TaskLocalID", + "kind": "field", + "name": "TaskLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TaskName", + "kind": "field", + "name": "TaskName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TimeStamp", + "kind": "field", + "name": "TimeStamp", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.#ctor", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "LegacyEnvironmentMessage", + "signature": "LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage.#ctor", + "kind": "constructor", + "name": "LegacyEnvironmentMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage.Settings", + "kind": "property", + "name": "Settings", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "MapLayerMessage", + "signature": "LibreMetaverse.Messages.Linden.MapLayerMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.MapLayerMessageBase", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessage.#ctor", + "kind": "constructor", + "name": "MapLayerMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerMessageBase", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "MapLayerMessageBase", + "signature": "LibreMetaverse.Messages.Linden.MapLayerMessageBase", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerMessageBase.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessageBase.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessageBase.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerReplyVariant", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "MapLayerReplyVariant", + "signature": "LibreMetaverse.Messages.Linden.MapLayerReplyVariant", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.MapLayerMessageBase", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerDataBlocks", + "kind": "field", + "name": "LayerDataBlocks", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.#ctor", + "kind": "constructor", + "name": "MapLayerReplyVariant", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "LayerData", + "signature": "LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Bottom", + "kind": "field", + "name": "Bottom", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Left", + "kind": "field", + "name": "Left", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Right", + "kind": "field", + "name": "Right", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Top", + "kind": "field", + "name": "Top", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.#ctor", + "kind": "constructor", + "name": "LayerData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerRequestVariant", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "MapLayerRequestVariant", + "signature": "LibreMetaverse.Messages.Linden.MapLayerRequestVariant", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.MapLayerMessageBase", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerRequestVariant.#ctor", + "kind": "constructor", + "name": "MapLayerRequestVariant", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerRequestVariant.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerRequestVariant.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NavMeshStatusUpdateMessage", + "signature": "LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.RawData", + "kind": "field", + "name": "RawData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Version", + "kind": "field", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.#ctor", + "kind": "constructor", + "name": "NavMeshStatusUpdateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NewFileAgentInventoryMessage", + "signature": "LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.AssetType", + "kind": "field", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.InventoryType", + "kind": "field", + "name": "InventoryType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.#ctor", + "kind": "constructor", + "name": "NewFileAgentInventoryMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NewFileAgentInventoryReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.Uploader", + "kind": "field", + "name": "Uploader", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.#ctor", + "kind": "constructor", + "name": "NewFileAgentInventoryReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NewFileAgentInventoryUploadReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.NewAsset", + "kind": "field", + "name": "NewAsset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.NewBaseMask", + "kind": "field", + "name": "NewBaseMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.NewEveryoneMask", + "kind": "field", + "name": "NewEveryoneMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.NewInventoryItem", + "kind": "field", + "name": "NewInventoryItem", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.NewNextOwnerMask", + "kind": "field", + "name": "NewNextOwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.NewOwnerMask", + "kind": "field", + "name": "NewOwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.#ctor", + "kind": "constructor", + "name": "NewFileAgentInventoryUploadReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NewFileAgentInventoryVariablePriceMessage", + "signature": "LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.AssetType", + "kind": "field", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.InventoryType", + "kind": "field", + "name": "InventoryType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.#ctor", + "kind": "constructor", + "name": "NewFileAgentInventoryVariablePriceMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "NewFileAgentInventoryVariablePriceReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.ResourceCost", + "kind": "field", + "name": "ResourceCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.Rsvp", + "kind": "field", + "name": "Rsvp", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.UploadPrice", + "kind": "field", + "name": "UploadPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.#ctor", + "kind": "constructor", + "name": "NewFileAgentInventoryVariablePriceReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectMediaBlock", + "signature": "LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectMediaMessage", + "signature": "LibreMetaverse.Messages.Linden.ObjectMediaMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaMessage.#ctor", + "kind": "constructor", + "name": "ObjectMediaMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectMediaNavigateMessage", + "signature": "LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.Face", + "kind": "field", + "name": "Face", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.PrimID", + "kind": "field", + "name": "PrimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.URL", + "kind": "field", + "name": "URL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.#ctor", + "kind": "constructor", + "name": "ObjectMediaNavigateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaRequest", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectMediaRequest", + "signature": "LibreMetaverse.Messages.Linden.ObjectMediaRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaRequest.PrimID", + "kind": "field", + "name": "PrimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaRequest.Verb", + "kind": "field", + "name": "Verb", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaRequest.#ctor", + "kind": "constructor", + "name": "ObjectMediaRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaRequest.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaResponse", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectMediaResponse", + "signature": "LibreMetaverse.Messages.Linden.ObjectMediaResponse", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaResponse.FaceMedia", + "kind": "field", + "name": "FaceMedia", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaEntry[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaResponse.PrimID", + "kind": "field", + "name": "PrimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaResponse.Version", + "kind": "field", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaResponse.#ctor", + "kind": "constructor", + "name": "ObjectMediaResponse", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaResponse.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaResponse.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaUpdate", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectMediaUpdate", + "signature": "LibreMetaverse.Messages.Linden.ObjectMediaUpdate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.FaceMedia", + "kind": "field", + "name": "FaceMedia", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaEntry[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.PrimID", + "kind": "field", + "name": "PrimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.Verb", + "kind": "field", + "name": "Verb", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.#ctor", + "kind": "constructor", + "name": "ObjectMediaUpdate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectPhysicsPropertiesMessage", + "signature": "LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage.ObjectPhysicsProperties", + "kind": "field", + "name": "ObjectPhysicsProperties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.PhysicsProperties[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage.#ctor", + "kind": "constructor", + "name": "ObjectPhysicsPropertiesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ObjectResourcesDetail", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ObjectResourcesDetail", + "signature": "LibreMetaverse.Messages.Linden.ObjectResourcesDetail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Location", + "kind": "field", + "name": "Location", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Resources", + "kind": "field", + "name": "Resources", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.#ctor", + "kind": "constructor", + "name": "ObjectResourcesDetail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ObjectResourcesDetail", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ParcelObjectOwnersReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwnersBlock", + "kind": "field", + "name": "PrimOwnersBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.#ctor", + "kind": "constructor", + "name": "ParcelObjectOwnersReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "PrimOwner", + "signature": "LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.Count", + "kind": "field", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.OnlineStatus", + "kind": "field", + "name": "OnlineStatus", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.TimeStamp", + "kind": "field", + "name": "TimeStamp", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.#ctor", + "kind": "constructor", + "name": "PrimOwner", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ParcelPropertiesMessage", + "signature": "LibreMetaverse.Messages.Linden.ParcelPropertiesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AABBMax", + "kind": "field", + "name": "AABBMax", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AABBMin", + "kind": "field", + "name": "AABBMin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AnyAVSounds", + "kind": "field", + "name": "AnyAVSounds", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Area", + "kind": "field", + "name": "Area", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AuctionID", + "kind": "field", + "name": "AuctionID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AuthBuyerID", + "kind": "field", + "name": "AuthBuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Bitmap", + "kind": "field", + "name": "Bitmap", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ClaimDate", + "kind": "field", + "name": "ClaimDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ClaimPrice", + "kind": "field", + "name": "ClaimPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.GroupAVSounds", + "kind": "field", + "name": "GroupAVSounds", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.GroupPrims", + "kind": "field", + "name": "GroupPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.LandingType", + "kind": "field", + "name": "LandingType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LandingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MaxPrims", + "kind": "field", + "name": "MaxPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaAutoScale", + "kind": "field", + "name": "MediaAutoScale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaDesc", + "kind": "field", + "name": "MediaDesc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaHeight", + "kind": "field", + "name": "MediaHeight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaID", + "kind": "field", + "name": "MediaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaLoop", + "kind": "field", + "name": "MediaLoop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaType", + "kind": "field", + "name": "MediaType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaWidth", + "kind": "field", + "name": "MediaWidth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MusicURL", + "kind": "field", + "name": "MusicURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ObscureMedia", + "kind": "field", + "name": "ObscureMedia", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ObscureMusic", + "kind": "field", + "name": "ObscureMusic", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OtherCleanTime", + "kind": "field", + "name": "OtherCleanTime", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OtherCount", + "kind": "field", + "name": "OtherCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OtherPrims", + "kind": "field", + "name": "OtherPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OwnerPrims", + "kind": "field", + "name": "OwnerPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ParcelFlags", + "kind": "field", + "name": "ParcelFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ParcelPrimBonus", + "kind": "field", + "name": "ParcelPrimBonus", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.PassHours", + "kind": "field", + "name": "PassHours", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.PassPrice", + "kind": "field", + "name": "PassPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Privacy", + "kind": "field", + "name": "Privacy", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.PublicCount", + "kind": "field", + "name": "PublicCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyAgeUnverified", + "kind": "field", + "name": "RegionDenyAgeUnverified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyAnonymous", + "kind": "field", + "name": "RegionDenyAnonymous", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyIdentified", + "kind": "field", + "name": "RegionDenyIdentified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyTransacted", + "kind": "field", + "name": "RegionDenyTransacted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionPushOverride", + "kind": "field", + "name": "RegionPushOverride", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RentPrice", + "kind": "field", + "name": "RentPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RequestResult", + "kind": "field", + "name": "RequestResult", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelResult", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SeeAVs", + "kind": "field", + "name": "SeeAVs", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SelectedPrims", + "kind": "field", + "name": "SelectedPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SelfCount", + "kind": "field", + "name": "SelfCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SimWideMaxPrims", + "kind": "field", + "name": "SimWideMaxPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SimWideTotalPrims", + "kind": "field", + "name": "SimWideTotalPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SnapSelection", + "kind": "field", + "name": "SnapSelection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.TotalPrims", + "kind": "field", + "name": "TotalPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.UserLocation", + "kind": "field", + "name": "UserLocation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.UserLookAt", + "kind": "field", + "name": "UserLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.#ctor", + "kind": "constructor", + "name": "ParcelPropertiesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ParcelPropertiesUpdateMessage", + "signature": "LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.AnyAVSounds", + "kind": "field", + "name": "AnyAVSounds", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.AuthBuyerID", + "kind": "field", + "name": "AuthBuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.GroupAVSounds", + "kind": "field", + "name": "GroupAVSounds", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Landing", + "kind": "field", + "name": "Landing", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LandingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaAutoScale", + "kind": "field", + "name": "MediaAutoScale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaDesc", + "kind": "field", + "name": "MediaDesc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaHeight", + "kind": "field", + "name": "MediaHeight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaID", + "kind": "field", + "name": "MediaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaLoop", + "kind": "field", + "name": "MediaLoop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaType", + "kind": "field", + "name": "MediaType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaWidth", + "kind": "field", + "name": "MediaWidth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MusicURL", + "kind": "field", + "name": "MusicURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.ObscureMedia", + "kind": "field", + "name": "ObscureMedia", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.ObscureMusic", + "kind": "field", + "name": "ObscureMusic", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.ParcelFlags", + "kind": "field", + "name": "ParcelFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.PassHours", + "kind": "field", + "name": "PassHours", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.PassPrice", + "kind": "field", + "name": "PassPrice", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Privacy", + "kind": "field", + "name": "Privacy", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.SeeAVs", + "kind": "field", + "name": "SeeAVs", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.UserLocation", + "kind": "field", + "name": "UserLocation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.UserLookAt", + "kind": "field", + "name": "UserLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.#ctor", + "kind": "constructor", + "name": "ParcelPropertiesUpdateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ParcelResourcesDetail", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ParcelResourcesDetail", + "signature": "LibreMetaverse.Messages.Linden.ParcelResourcesDetail", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.Objects", + "kind": "field", + "name": "Objects", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ObjectResourcesDetail[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.#ctor", + "kind": "constructor", + "name": "ParcelResourcesDetail", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ParcelResourcesDetail", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ParcelVoiceInfoRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.RegionName", + "kind": "field", + "name": "RegionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.SipChannelUri", + "kind": "field", + "name": "SipChannelUri", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.#ctor", + "kind": "constructor", + "name": "ParcelVoiceInfoRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.PlacesReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "PlacesReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.PlacesReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryDataBlocks", + "kind": "field", + "name": "QueryDataBlocks", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.PlacesReplyMessage.#ctor", + "kind": "constructor", + "name": "PlacesReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.PlacesReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.PlacesReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "QueryData", + "signature": "LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.GlobalZ", + "kind": "field", + "name": "GlobalZ", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.ProductSku", + "kind": "field", + "name": "ProductSku", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.SnapShotID", + "kind": "field", + "name": "SnapShotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.#ctor", + "kind": "constructor", + "name": "QueryData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ProductInfoRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.ProductInfoRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.Products", + "kind": "field", + "name": "Products", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.#ctor", + "kind": "constructor", + "name": "ProductInfoRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ProductInfo", + "signature": "LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.Sku", + "kind": "field", + "name": "Sku", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.#ctor", + "kind": "constructor", + "name": "ProductInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ProvisionVoiceAccountRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Password", + "kind": "field", + "name": "Password", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Username", + "kind": "field", + "name": "Username", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.#ctor", + "kind": "constructor", + "name": "ProvisionVoiceAccountRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RegionExperiencesMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RegionExperiencesMessage", + "signature": "LibreMetaverse.Messages.Linden.RegionExperiencesMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Allowed", + "kind": "field", + "name": "Allowed", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Blocked", + "kind": "field", + "name": "Blocked", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Default", + "kind": "field", + "name": "Default", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Trusted", + "kind": "field", + "name": "Trusted", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.#ctor", + "kind": "constructor", + "name": "RegionExperiencesMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RegionInfoMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RegionInfoMessage", + "signature": "LibreMetaverse.Messages.Linden.RegionInfoMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionInfoMessage.ChannelUri", + "kind": "field", + "name": "ChannelUri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionInfoMessage.ParcelLocalID", + "kind": "field", + "name": "ParcelLocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RegionInfoMessage.RegionName", + "kind": "field", + "name": "RegionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RegionInfoMessage.#ctor", + "kind": "constructor", + "name": "RegionInfoMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RegionInfoMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RegionInfoMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RemoteParcelRequestBlock", + "signature": "LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RemoteParcelRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage.#ctor", + "kind": "constructor", + "name": "RemoteParcelRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RemoteParcelRequestReply", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RemoteParcelRequestReply", + "signature": "LibreMetaverse.Messages.Linden.RemoteParcelRequestReply", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RemoteParcelRequestReply.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestReply.#ctor", + "kind": "constructor", + "name": "RemoteParcelRequestReply", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestReply.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestReply.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RemoteParcelRequestRequest", + "signature": "LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.Location", + "kind": "field", + "name": "Location", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.#ctor", + "kind": "constructor", + "name": "RemoteParcelRequestRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RenderMaterialsMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RenderMaterialsMessage", + "signature": "LibreMetaverse.Messages.Linden.RenderMaterialsMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RenderMaterialsMessage.MaterialData", + "kind": "field", + "name": "MaterialData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RenderMaterialsMessage.#ctor", + "kind": "constructor", + "name": "RenderMaterialsMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RenderMaterialsMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RenderMaterialsMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "RequiredVoiceVersionMessage", + "signature": "LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.MajorVersion", + "kind": "field", + "name": "MajorVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.MinorVersion", + "kind": "field", + "name": "MinorVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.RegionName", + "kind": "field", + "name": "RegionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.#ctor", + "kind": "constructor", + "name": "RequiredVoiceVersionMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ScriptRunningReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Mono", + "kind": "field", + "name": "Mono", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Running", + "kind": "field", + "name": "Running", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.#ctor", + "kind": "constructor", + "name": "ScriptRunningReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SearchStatRequestBlock", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SearchStatRequestBlock", + "signature": "LibreMetaverse.Messages.Linden.SearchStatRequestBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestBlock.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SearchStatRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SearchStatRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.SearchStatRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.SearchStatRequestBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestMessage.#ctor", + "kind": "constructor", + "name": "SearchStatRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SearchStatRequestReply", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SearchStatRequestReply", + "signature": "LibreMetaverse.Messages.Linden.SearchStatRequestReply", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.SearchStatRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.MapClicks", + "kind": "field", + "name": "MapClicks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.ProfileClicks", + "kind": "field", + "name": "ProfileClicks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.SearchMapClicks", + "kind": "field", + "name": "SearchMapClicks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.SearchProfileClicks", + "kind": "field", + "name": "SearchProfileClicks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.SearchTeleportClicks", + "kind": "field", + "name": "SearchTeleportClicks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.TeleportClicks", + "kind": "field", + "name": "TeleportClicks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestReply.#ctor", + "kind": "constructor", + "name": "SearchStatRequestReply", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestReply.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestReply.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SearchStatRequestRequest", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SearchStatRequestRequest", + "signature": "LibreMetaverse.Messages.Linden.SearchStatRequestRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.SearchStatRequestBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestRequest.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestRequest.#ctor", + "kind": "constructor", + "name": "SearchStatRequestRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestRequest.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SendPostcardMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SendPostcardMessage", + "signature": "LibreMetaverse.Messages.Linden.SendPostcardMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.FromName", + "kind": "field", + "name": "FromName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.GlobalPosition", + "kind": "field", + "name": "GlobalPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.ToEmail", + "kind": "field", + "name": "ToEmail", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SendPostcardMessage.#ctor", + "kind": "constructor", + "name": "SendPostcardMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SendPostcardMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SendPostcardMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SetDisplayNameMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SetDisplayNameMessage", + "signature": "LibreMetaverse.Messages.Linden.SetDisplayNameMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.NewDisplayName", + "kind": "field", + "name": "NewDisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.OldDisplayName", + "kind": "field", + "name": "OldDisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.#ctor", + "kind": "constructor", + "name": "SetDisplayNameMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SetDisplayNameReplyMessage", + "signature": "LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.DisplayName", + "kind": "field", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentDisplayName", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.#ctor", + "kind": "constructor", + "name": "SetDisplayNameReplyMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SimConsoleAsyncMessage", + "signature": "LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage.Command", + "kind": "field", + "name": "Command", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage.#ctor", + "kind": "constructor", + "name": "SimConsoleAsyncMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "SimConsoleResponseMessage", + "signature": "LibreMetaverse.Messages.Linden.SimConsoleResponseMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage.Body", + "kind": "field", + "name": "Body", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage.#ctor", + "kind": "constructor", + "name": "SimConsoleResponseMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.TeleportFailedMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "TeleportFailedMessage", + "signature": "LibreMetaverse.Messages.Linden.TeleportFailedMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.ExtraParams", + "kind": "field", + "name": "ExtraParams", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.MessageKey", + "kind": "field", + "name": "MessageKey", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFailedMessage.#ctor", + "kind": "constructor", + "name": "TeleportFailedMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFailedMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFailedMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.TeleportFinishMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "TeleportFinishMessage", + "signature": "LibreMetaverse.Messages.Linden.TeleportFinishMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.LocationID", + "kind": "field", + "name": "LocationID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.RegionSizeX", + "kind": "field", + "name": "RegionSizeX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.RegionSizeY", + "kind": "field", + "name": "RegionSizeY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.SeedCapability", + "kind": "field", + "name": "SeedCapability", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFinishMessage.#ctor", + "kind": "constructor", + "name": "TeleportFinishMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFinishMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFinishMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateAgentInformationMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage.MaxAccess", + "kind": "field", + "name": "MaxAccess", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage.#ctor", + "kind": "constructor", + "name": "UpdateAgentInformationMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateAgentInventoryRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage.#ctor", + "kind": "constructor", + "name": "UpdateAgentInventoryRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateAgentLanguageMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.Language", + "kind": "field", + "name": "Language", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.LanguagePublic", + "kind": "field", + "name": "LanguagePublic", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.#ctor", + "kind": "constructor", + "name": "UpdateAgentLanguageMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateGestureAgentInventoryMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage.#ctor", + "kind": "constructor", + "name": "UpdateGestureAgentInventoryMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateNotecardAgentInventoryMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage.#ctor", + "kind": "constructor", + "name": "UpdateNotecardAgentInventoryMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateNotecardTaskInventoryMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage.#ctor", + "kind": "constructor", + "name": "UpdateNotecardTaskInventoryMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateScriptAgentMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage.#ctor", + "kind": "constructor", + "name": "UpdateScriptAgentMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateScriptAgentRequestMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.Target", + "kind": "field", + "name": "Target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.#ctor", + "kind": "constructor", + "name": "UpdateScriptAgentRequestMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateScriptTaskMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage.#ctor", + "kind": "constructor", + "name": "UpdateScriptTaskMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UpdateScriptTaskUpdateMessage", + "signature": "LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.ScriptRunning", + "kind": "field", + "name": "ScriptRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.Target", + "kind": "field", + "name": "Target", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.#ctor", + "kind": "constructor", + "name": "UpdateScriptTaskUpdateMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploadBakedTextureMessage", + "signature": "LibreMetaverse.Messages.Linden.UploadBakedTextureMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage.#ctor", + "kind": "constructor", + "name": "UploadBakedTextureMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploadObjectAssetMessage", + "signature": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Objects", + "kind": "field", + "name": "Objects", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.#ctor", + "kind": "constructor", + "name": "UploadObjectAssetMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "Object", + "signature": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParams", + "kind": "field", + "name": "ExtraParams", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Faces", + "kind": "field", + "name": "Faces", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.PathBegin", + "kind": "field", + "name": "PathBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.PathCurve", + "kind": "field", + "name": "PathCurve", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.PathEnd", + "kind": "field", + "name": "PathEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileBegin", + "kind": "field", + "name": "ProfileBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileCurve", + "kind": "field", + "name": "ProfileCurve", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileEnd", + "kind": "field", + "name": "ProfileEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileHollow", + "kind": "field", + "name": "ProfileHollow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.RadiusOffset", + "kind": "field", + "name": "RadiusOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Revolutions", + "kind": "field", + "name": "Revolutions", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ScaleX", + "kind": "field", + "name": "ScaleX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ScaleY", + "kind": "field", + "name": "ScaleY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.SculptID", + "kind": "field", + "name": "SculptID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.SculptType", + "kind": "field", + "name": "SculptType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ShearX", + "kind": "field", + "name": "ShearX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ShearY", + "kind": "field", + "name": "ShearY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Skew", + "kind": "field", + "name": "Skew", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.TaperX", + "kind": "field", + "name": "TaperX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.TaperY", + "kind": "field", + "name": "TaperY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Twist", + "kind": "field", + "name": "Twist", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.TwistBegin", + "kind": "field", + "name": "TwistBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.#ctor", + "kind": "constructor", + "name": "Object", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ExtraParam", + "signature": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.ExtraParamData", + "kind": "field", + "name": "ExtraParamData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.#ctor", + "kind": "constructor", + "name": "ExtraParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "Face", + "signature": "LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Bump", + "kind": "field", + "name": "Bump", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Color", + "kind": "field", + "name": "Color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Fullbright", + "kind": "field", + "name": "Fullbright", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Glow", + "kind": "field", + "name": "Glow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ImageRot", + "kind": "field", + "name": "ImageRot", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.MediaFlags", + "kind": "field", + "name": "MediaFlags", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.OffsetS", + "kind": "field", + "name": "OffsetS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.OffsetT", + "kind": "field", + "name": "OffsetT", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ScaleS", + "kind": "field", + "name": "ScaleS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ScaleT", + "kind": "field", + "name": "ScaleT", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.#ctor", + "kind": "constructor", + "name": "Face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploadScriptTaskMessage", + "signature": "LibreMetaverse.Messages.Linden.UploadScriptTaskMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage.#ctor", + "kind": "constructor", + "name": "UploadScriptTaskMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploaderRequestComplete", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploaderRequestComplete", + "signature": "LibreMetaverse.Messages.Linden.UploaderRequestComplete", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderRequestComplete.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestComplete.#ctor", + "kind": "constructor", + "name": "UploaderRequestComplete", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestComplete.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestComplete.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploaderRequestScriptComplete", + "signature": "LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.Compiled", + "kind": "field", + "name": "Compiled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.#ctor", + "kind": "constructor", + "name": "UploaderRequestScriptComplete", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploaderRequestUpload", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploaderRequestUpload", + "signature": "LibreMetaverse.Messages.Linden.UploaderRequestUpload", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderRequestUpload.Url", + "kind": "field", + "name": "Url", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestUpload.#ctor", + "kind": "constructor", + "name": "UploaderRequestUpload", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestUpload.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestUpload.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.UploaderScriptRequestError", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "UploaderScriptRequestError", + "signature": "LibreMetaverse.Messages.Linden.UploaderScriptRequestError", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Compiled", + "kind": "field", + "name": "Compiled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Error", + "kind": "field", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.#ctor", + "kind": "constructor", + "name": "UploaderScriptRequestError", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ViewerBenefitsMessage", + "signature": "LibreMetaverse.Messages.Linden.ViewerBenefitsMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.AccountLevelBenefits", + "kind": "field", + "name": "AccountLevelBenefits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.AccountType", + "kind": "field", + "name": "AccountType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.PremiumPackages", + "kind": "field", + "name": "PremiumPackages", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.#ctor", + "kind": "constructor", + "name": "ViewerBenefitsMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "BenefitPackage", + "signature": "LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.AnimatedObjectLimit", + "kind": "field", + "name": "AnimatedObjectLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.AnimationUploadCost", + "kind": "field", + "name": "AnimationUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.AttachmentLimit", + "kind": "field", + "name": "AttachmentLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.CreateGroupCost", + "kind": "field", + "name": "CreateGroupCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.GroupMembershipLimit", + "kind": "field", + "name": "GroupMembershipLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.LargeTextureUploadCost", + "kind": "field", + "name": "LargeTextureUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.PicksLimit", + "kind": "field", + "name": "PicksLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.SoundUploadCost", + "kind": "field", + "name": "SoundUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.TextureUploadCost", + "kind": "field", + "name": "TextureUploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.#ctor", + "kind": "constructor", + "name": "BenefitPackage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.Linden.ViewerStatsMessage", + "namespace": "LibreMetaverse.Messages.Linden", + "name": "ViewerStatsMessage", + "signature": "LibreMetaverse.Messages.Linden.ViewerStatsMessage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Interfaces.IMessage" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentFPS", + "kind": "field", + "name": "AgentFPS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentLanguage", + "kind": "field", + "name": "AgentLanguage", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentMemoryUsed", + "kind": "field", + "name": "AgentMemoryUsed", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentPing", + "kind": "field", + "name": "AgentPing", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentRuntime", + "kind": "field", + "name": "AgentRuntime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentStartTime", + "kind": "field", + "name": "AgentStartTime", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentVersion", + "kind": "field", + "name": "AgentVersion", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentsInView", + "kind": "field", + "name": "AgentsInView", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresInvalid", + "kind": "field", + "name": "FailuresInvalid", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresOffCircuit", + "kind": "field", + "name": "FailuresOffCircuit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresResent", + "kind": "field", + "name": "FailuresResent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresSendPacket", + "kind": "field", + "name": "FailuresSendPacket", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InCompressedPackets", + "kind": "field", + "name": "InCompressedPackets", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InKbytes", + "kind": "field", + "name": "InKbytes", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InPackets", + "kind": "field", + "name": "InPackets", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InSavings", + "kind": "field", + "name": "InSavings", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MetersTraveled", + "kind": "field", + "name": "MetersTraveled", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscInt1", + "kind": "field", + "name": "MiscInt1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscInt2", + "kind": "field", + "name": "MiscInt2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscString1", + "kind": "field", + "name": "MiscString1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscVersion", + "kind": "field", + "name": "MiscVersion", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutCompressedPackets", + "kind": "field", + "name": "OutCompressedPackets", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutKbytes", + "kind": "field", + "name": "OutKbytes", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutPackets", + "kind": "field", + "name": "OutPackets", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutSavings", + "kind": "field", + "name": "OutSavings", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.RegionsVisited", + "kind": "field", + "name": "RegionsVisited", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SimulatorFPS", + "kind": "field", + "name": "SimulatorFPS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.StatsDropped", + "kind": "field", + "name": "StatsDropped", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.StatsFailedResends", + "kind": "field", + "name": "StatsFailedResends", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemCPU", + "kind": "field", + "name": "SystemCPU", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPU", + "kind": "field", + "name": "SystemGPU", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPUClass", + "kind": "field", + "name": "SystemGPUClass", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPUVendor", + "kind": "field", + "name": "SystemGPUVendor", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPUVersion", + "kind": "field", + "name": "SystemGPUVersion", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemInstalledRam", + "kind": "field", + "name": "SystemInstalledRam", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemOS", + "kind": "field", + "name": "SystemOS", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.VertexBuffersEnabled", + "kind": "field", + "name": "VertexBuffersEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.object_kbytes", + "kind": "field", + "name": "object_kbytes", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.texture_kbytes", + "kind": "field", + "name": "texture_kbytes", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.world_kbytes", + "kind": "field", + "name": "world_kbytes", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerStatsMessage.#ctor", + "kind": "constructor", + "name": "ViewerStatsMessage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerStatsMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "Deserialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.Linden.ViewerStatsMessage.Serialize", + "kind": "method", + "name": "Serialize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Messages.MessageUtils", + "namespace": "LibreMetaverse.Messages", + "name": "MessageUtils", + "signature": "LibreMetaverse.Messages.MessageUtils", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.DecodeEvent(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "DecodeEvent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Interfaces.IMessage", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eventName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromDictionaryString(System.Collections.Generic.Dictionary{System.String,System.String})", + "kind": "method", + "name": "FromDictionaryString", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dict", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromDictionaryUri(System.Collections.Generic.Dictionary{System.Uri,System.Uri})", + "kind": "method", + "name": "FromDictionaryUri", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dict", + "type": "System.Collections.Generic.Dictionary\u003CSystem.Uri, System.Uri\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromIP(System.Net.IPAddress)", + "kind": "method", + "name": "FromIP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.Net.IPAddress", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToDictionaryString(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "ToDictionaryString", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToDictionaryUri(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "ToDictionaryUri", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.Uri, System.Uri\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToIP(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "ToIP", + "static": true, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MoneyBalanceReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "MoneyBalanceReplyEventArgs", + "signature": "LibreMetaverse.MoneyBalanceReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.MoneyBalanceReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32,System.Int32,System.String,LibreMetaverse.TransactionInfo)", + "kind": "constructor", + "name": "MoneyBalanceReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "transactionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionSuccess", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "balance", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "metersCredit", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "metersCommitted", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "transactionInfo", + "type": "LibreMetaverse.TransactionInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.Balance", + "kind": "property", + "name": "Balance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.Description", + "kind": "property", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.MetersCommitted", + "kind": "property", + "name": "MetersCommitted", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.MetersCredit", + "kind": "property", + "name": "MetersCredit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.TransactionID", + "kind": "property", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.TransactionInfo", + "kind": "property", + "name": "TransactionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TransactionInfo", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MoneyTransactionType", + "namespace": "LibreMetaverse", + "name": "MoneyTransactionType", + "signature": "LibreMetaverse.MoneyTransactionType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ClassifiedCharge", + "kind": "enum_value", + "name": "ClassifiedCharge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ClassifiedRenew", + "kind": "enum_value", + "name": "ClassifiedRenew", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2005" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.DwellBonus", + "kind": "enum_value", + "name": "DwellBonus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5007" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.EventFee", + "kind": "enum_value", + "name": "EventFee", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "9003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.EventPrize", + "kind": "enum_value", + "name": "EventPrize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "9004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.FailDataserverTimeout", + "kind": "enum_value", + "name": "FailDataserverTimeout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.FailSimulatorTimeout", + "kind": "enum_value", + "name": "FailSimulatorTimeout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.Gift", + "kind": "enum_value", + "name": "Gift", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GiveInventory", + "kind": "enum_value", + "name": "GiveInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "3000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupCreate", + "kind": "enum_value", + "name": "GroupCreate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupDividend", + "kind": "enum_value", + "name": "GroupDividend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "6004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupJoin", + "kind": "enum_value", + "name": "GroupJoin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupLandDeed", + "kind": "enum_value", + "name": "GroupLandDeed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "6001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupLiability", + "kind": "enum_value", + "name": "GroupLiability", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "6003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupMembershipDues", + "kind": "enum_value", + "name": "GroupMembershipDues", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "6005" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupObjectDeed", + "kind": "enum_value", + "name": "GroupObjectDeed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "6002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.GroupTax", + "kind": "enum_value", + "name": "GroupTax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.InventorySale", + "kind": "enum_value", + "name": "InventorySale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LandAuction", + "kind": "enum_value", + "name": "LandAuction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LandClaim", + "kind": "enum_value", + "name": "LandClaim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LandPassSale", + "kind": "enum_value", + "name": "LandPassSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5006" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LandRelease", + "kind": "enum_value", + "name": "LandRelease", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "8001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LandSale", + "kind": "enum_value", + "name": "LandSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LandTax", + "kind": "enum_value", + "name": "LandTax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LightTax", + "kind": "enum_value", + "name": "LightTax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LindenAdjustment", + "kind": "enum_value", + "name": "LindenAdjustment", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "9000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LindenGrant", + "kind": "enum_value", + "name": "LindenGrant", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "9001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.LindenPenalty", + "kind": "enum_value", + "name": "LindenPenalty", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "9002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectClaim", + "kind": "enum_value", + "name": "ObjectClaim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectDelete", + "kind": "enum_value", + "name": "ObjectDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "8002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectPays", + "kind": "enum_value", + "name": "ObjectPays", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5009" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectPublicClaim", + "kind": "enum_value", + "name": "ObjectPublicClaim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectPublicDecay", + "kind": "enum_value", + "name": "ObjectPublicDecay", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "8003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectPublicDelete", + "kind": "enum_value", + "name": "ObjectPublicDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "8004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectRelease", + "kind": "enum_value", + "name": "ObjectRelease", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "8000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectSale", + "kind": "enum_value", + "name": "ObjectSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ObjectTax", + "kind": "enum_value", + "name": "ObjectTax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ParcelDirFee", + "kind": "enum_value", + "name": "ParcelDirFee", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "2003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.PayObject", + "kind": "enum_value", + "name": "PayObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5008" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.ReferBonus", + "kind": "enum_value", + "name": "ReferBonus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.RefundPurchase", + "kind": "enum_value", + "name": "RefundPurchase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "5005" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.StipendAlways", + "kind": "enum_value", + "name": "StipendAlways", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "10002" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.StipendBasic", + "kind": "enum_value", + "name": "StipendBasic", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "10000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.StipendDaily", + "kind": "enum_value", + "name": "StipendDaily", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "10003" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.StipendDelta", + "kind": "enum_value", + "name": "StipendDelta", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "10005" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.StipendDeveloper", + "kind": "enum_value", + "name": "StipendDeveloper", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "10001" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.StipendRating", + "kind": "enum_value", + "name": "StipendRating", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "10004" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.TeleportCharge", + "kind": "enum_value", + "name": "TeleportCharge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MoneyTransactionType.UploadCharge", + "kind": "enum_value", + "name": "UploadCharge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MoneyTransactionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MoneyTransactionType", + "value": "1101" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MuteEntry", + "namespace": "LibreMetaverse", + "name": "MuteEntry", + "signature": "LibreMetaverse.MuteEntry", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MuteEntry.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteEntry.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteEntry.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.MuteEntry.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MuteType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MuteEntry.#ctor", + "kind": "constructor", + "name": "MuteEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MuteFlags", + "namespace": "LibreMetaverse", + "name": "MuteFlags", + "signature": "LibreMetaverse.MuteFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.MuteFlags.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteFlags", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteFlags.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteFlags.ObjectSounds", + "kind": "enum_value", + "name": "ObjectSounds", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteFlags.Particles", + "kind": "enum_value", + "name": "Particles", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteFlags.TextChat", + "kind": "enum_value", + "name": "TextChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteFlags.VoiceChat", + "kind": "enum_value", + "name": "VoiceChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MuteType", + "namespace": "LibreMetaverse", + "name": "MuteType", + "signature": "LibreMetaverse.MuteType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.MuteType.ByName", + "kind": "enum_value", + "name": "ByName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteType.External", + "kind": "enum_value", + "name": "External", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteType.Group", + "kind": "enum_value", + "name": "Group", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteType.Object", + "kind": "enum_value", + "name": "Object", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.MuteType.Resident", + "kind": "enum_value", + "name": "Resident", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MuteType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.MuteType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NameValue", + "namespace": "LibreMetaverse", + "name": "NameValue", + "signature": "LibreMetaverse.NameValue", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.NameValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NameValue.Class", + "kind": "field", + "name": "Class", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ClassType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.Sendto", + "kind": "field", + "name": "Sendto", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NameValue.SendtoType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NameValue.#ctor(System.String)", + "kind": "constructor", + "name": "NameValue", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NameValue.#ctor(System.String,LibreMetaverse.NameValue.ValueType,LibreMetaverse.NameValue.ClassType,LibreMetaverse.NameValue.SendtoType,System.Object)", + "kind": "constructor", + "name": "NameValue", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "valueType", + "type": "LibreMetaverse.NameValue.ValueType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "classType", + "type": "LibreMetaverse.NameValue.ClassType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sendtoType", + "type": "LibreMetaverse.NameValue.SendtoType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NameValue.Equals(LibreMetaverse.NameValue)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.NameValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NameValue.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NameValue.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NameValue.NameValuesToString(LibreMetaverse.NameValue[])", + "kind": "method", + "name": "NameValuesToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "values", + "type": "LibreMetaverse.NameValue[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NameValue.ClassType", + "namespace": "LibreMetaverse", + "name": "ClassType", + "signature": "LibreMetaverse.NameValue.ClassType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NameValue.ClassType.Callback", + "kind": "enum_value", + "name": "Callback", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ClassType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ClassType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ClassType.ReadOnly", + "kind": "enum_value", + "name": "ReadOnly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ClassType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ClassType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ClassType.ReadWrite", + "kind": "enum_value", + "name": "ReadWrite", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ClassType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ClassType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ClassType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ClassType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ClassType", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NameValue.SendtoType", + "namespace": "LibreMetaverse", + "name": "SendtoType", + "signature": "LibreMetaverse.NameValue.SendtoType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NameValue.SendtoType.DataSim", + "kind": "enum_value", + "name": "DataSim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.SendtoType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.SendtoType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.SendtoType.DataSimViewer", + "kind": "enum_value", + "name": "DataSimViewer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.SendtoType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.SendtoType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.SendtoType.Sim", + "kind": "enum_value", + "name": "Sim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.SendtoType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.SendtoType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.SendtoType.SimViewer", + "kind": "enum_value", + "name": "SimViewer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.SendtoType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.SendtoType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.SendtoType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.SendtoType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.SendtoType", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NameValue.ValueType", + "namespace": "LibreMetaverse", + "name": "ValueType", + "signature": "LibreMetaverse.NameValue.ValueType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.Asset", + "kind": "enum_value", + "name": "Asset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.CAMERA", + "kind": "enum_value", + "name": "CAMERA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [ + { + "type": "System.ObsoleteAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.F32", + "kind": "enum_value", + "name": "F32", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.S32", + "kind": "enum_value", + "name": "S32", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.String", + "kind": "enum_value", + "name": "String", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.U32", + "kind": "enum_value", + "name": "U32", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.U64", + "kind": "enum_value", + "name": "U64", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NameValue.ValueType.VEC3", + "kind": "enum_value", + "name": "VEC3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NameValue.ValueType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NameValue.ValueType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NavMeshStatusUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "NavMeshStatusUpdateEventArgs", + "signature": "LibreMetaverse.NavMeshStatusUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.NavMeshStatusUpdateEventArgs.#ctor(LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage,LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "NavMeshStatusUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NavMeshStatusUpdateEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NavMeshStatusUpdateEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NetworkManager", + "namespace": "LibreMetaverse", + "name": "NetworkManager", + "signature": "LibreMetaverse.NetworkManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.NetworkManager.Disconnected", + "kind": "event", + "name": "Disconnected", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.DisconnectedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.EventQueueRunning", + "kind": "event", + "name": "EventQueueRunning", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.EventQueueRunningEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.GenericStreamingMessage", + "kind": "event", + "name": "GenericStreamingMessage", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.GenericStreamingMessageEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.LoggedOut", + "kind": "event", + "name": "LoggedOut", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.LoggedOutEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.LoginProgress", + "kind": "event", + "name": "LoginProgress", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.LoginProgressEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.PacketSent", + "kind": "event", + "name": "PacketSent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PacketSentEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.SimChanged", + "kind": "event", + "name": "SimChanged", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SimChangedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.SimConnected", + "kind": "event", + "name": "SimConnected", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SimConnectedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.SimConnecting", + "kind": "event", + "name": "SimConnecting", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SimConnectingEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.NetworkManager.SimDisconnected", + "kind": "event", + "name": "SimDisconnected", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SimDisconnectedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.LoginResponseData", + "kind": "field", + "name": "LoginResponseData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginResponseData", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.Simulators", + "kind": "field", + "name": "Simulators", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Simulator\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "NetworkManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.AbortLogin", + "kind": "method", + "name": "AbortLogin", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.BeginLogin(LibreMetaverse.LoginParams)", + "kind": "method", + "name": "BeginLogin", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "loginParams", + "type": "LibreMetaverse.LoginParams", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.BeginLogout", + "kind": "method", + "name": "BeginLogout", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "kind": "method", + "name": "Connect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ip", + "type": "System.Net.IPAddress", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "port", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "setDefault", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "kind": "method", + "name": "Connect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ip", + "type": "System.Net.IPAddress", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "port", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "setDefault", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizeX", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizeY", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri)", + "kind": "method", + "name": "Connect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "setDefault", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "kind": "method", + "name": "Connect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "setDefault", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizeX", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizeY", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "kind": "method", + "name": "ConnectAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Simulator\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ip", + "type": "System.Net.IPAddress", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "port", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "setDefault", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "kind": "method", + "name": "ConnectAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Simulator\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "setDefault", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "sizeX", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizeY", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.DefaultLoginParams(System.String,System.String,System.String,System.String,System.String)", + "kind": "method", + "name": "DefaultLoginParams", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginParams", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.DisconnectSim(LibreMetaverse.Simulator,System.Boolean)", + "kind": "method", + "name": "DisconnectSim", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sendCloseCircuit", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.EnqueueIncoming(LibreMetaverse.NetworkManager.IncomingPacket)", + "kind": "method", + "name": "EnqueueIncoming", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.NetworkManager.IncomingPacket", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.EnqueueOutgoing(LibreMetaverse.NetworkManager.OutgoingPacket)", + "kind": "method", + "name": "EnqueueOutgoing", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.NetworkManager.OutgoingPacket", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.FindSimulator(System.Net.IPEndPoint)", + "kind": "method", + "name": "FindSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.FindSimulator(System.UInt64)", + "kind": "method", + "name": "FindSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.GetHashedMAC", + "kind": "method", + "name": "GetHashedMAC", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.GetMAC", + "kind": "method", + "name": "GetMAC", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.GetPlatform", + "kind": "method", + "name": "GetPlatform", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.GetPlatformVersion", + "kind": "method", + "name": "GetPlatformVersion", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Login(LibreMetaverse.LoginResponseData)", + "kind": "method", + "name": "Login", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "LibreMetaverse.LoginResponseData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "credential", + "type": "LibreMetaverse.LoginCredential", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "start", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "credential", + "type": "LibreMetaverse.LoginCredential", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "loginParams", + "type": "LibreMetaverse.LoginParams", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.NetworkManager.\u003CLoginAsync\u003Ed__46" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "start", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginWithResponseAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "credential", + "type": "LibreMetaverse.LoginCredential", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "start", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginWithResponseAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "credential", + "type": "LibreMetaverse.LoginCredential", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginWithResponseAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "loginParams", + "type": "LibreMetaverse.LoginParams", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.NetworkManager.\u003CLoginWithResponseAsync\u003Ed__47" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "LoginWithResponseAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channel", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "start", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Logout", + "kind": "method", + "name": "Logout", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LogoutAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "LogoutAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.NetworkManager.\u003CLogoutAsync\u003Ed__179" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RefreshMac", + "kind": "method", + "name": "RefreshMac", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "kind": "method", + "name": "RegisterCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "kind": "method", + "name": "RegisterCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "isAsync", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RegisterEventCallback(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "kind": "method", + "name": "RegisterEventCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsEvent", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "LibreMetaverse.Caps.EventQueueCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RegisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback)", + "kind": "method", + "name": "RegisterLoginResponseCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "LibreMetaverse.NetworkManager.LoginResponseCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RegisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback,System.String[])", + "kind": "method", + "name": "RegisterLoginResponseCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "LibreMetaverse.NetworkManager.LoginResponseCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "options", + "type": "System.String[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.RequestLogout", + "kind": "method", + "name": "RequestLogout", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.SendPacket(LibreMetaverse.Packets.Packet)", + "kind": "method", + "name": "SendPacket", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.SendPacket(LibreMetaverse.Packets.Packet,LibreMetaverse.Simulator)", + "kind": "method", + "name": "SendPacket", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Shutdown(LibreMetaverse.NetworkManager.DisconnectType)", + "kind": "method", + "name": "Shutdown", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.Shutdown(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "kind": "method", + "name": "Shutdown", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.ShutdownAsync(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "kind": "method", + "name": "ShutdownAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.NetworkManager.\u003CShutdownAsync\u003Ed__184" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.StartLocation(System.String,System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "StartLocation", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.UnregisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "kind": "method", + "name": "UnregisterCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.UnregisterEventCallback(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "kind": "method", + "name": "UnregisterEventCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsEvent", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "LibreMetaverse.Caps.EventQueueCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.UnregisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback)", + "kind": "method", + "name": "UnregisterLoginResponseCallback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "LibreMetaverse.NetworkManager.LoginResponseCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.AccountLevelBenefits", + "kind": "property", + "name": "AccountLevelBenefits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AccountLevelBenefits", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.AgentAppearanceServiceURL", + "kind": "property", + "name": "AgentAppearanceServiceURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.CircuitCode", + "kind": "property", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.Connected", + "kind": "property", + "name": "Connected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.CurrentSim", + "kind": "property", + "name": "CurrentSim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.InboxCount", + "kind": "property", + "name": "InboxCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.LoginErrorKey", + "kind": "property", + "name": "LoginErrorKey", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.LoginMessage", + "kind": "property", + "name": "LoginMessage", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.LoginSeedCapability", + "kind": "property", + "name": "LoginSeedCapability", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.LoginStatusCode", + "kind": "property", + "name": "LoginStatusCode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoginStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.MaxAgentGroups", + "kind": "property", + "name": "MaxAgentGroups", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.NetworkManager.OutboxCount", + "kind": "property", + "name": "OutboxCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NetworkManager.DisconnectType", + "namespace": "LibreMetaverse", + "name": "DisconnectType", + "signature": "LibreMetaverse.NetworkManager.DisconnectType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NetworkManager.DisconnectType.ClientInitiated", + "kind": "enum_value", + "name": "ClientInitiated", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.DisconnectType.NetworkTimeout", + "kind": "enum_value", + "name": "NetworkTimeout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.DisconnectType.ServerInitiated", + "kind": "enum_value", + "name": "ServerInitiated", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.DisconnectType.SimShutdown", + "kind": "enum_value", + "name": "SimShutdown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NetworkManager.IncomingPacket", + "namespace": "LibreMetaverse", + "name": "IncomingPacket", + "signature": "LibreMetaverse.NetworkManager.IncomingPacket", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NetworkManager.IncomingPacket.Packet", + "kind": "field", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.IncomingPacket.Simulator", + "kind": "field", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.IncomingPacket.#ctor", + "kind": "constructor", + "name": "IncomingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NetworkManager.LoginResponseCallback", + "namespace": "LibreMetaverse", + "name": "LoginResponseCallback", + "signature": "LibreMetaverse.NetworkManager.LoginResponseCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "loginSuccess", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "redirect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reason", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replyData", + "type": "LibreMetaverse.LoginResponseData", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "LoginResponseCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "loginSuccess", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "redirect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "reason", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "replyData", + "type": "LibreMetaverse.LoginResponseData", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "loginSuccess", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "redirect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reason", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replyData", + "type": "LibreMetaverse.LoginResponseData", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.NetworkManager.OutgoingPacket", + "namespace": "LibreMetaverse", + "name": "OutgoingPacket", + "signature": "LibreMetaverse.NetworkManager.OutgoingPacket", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.Buffer", + "kind": "field", + "name": "Buffer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UDPPacketBuffer", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.ResendCount", + "kind": "field", + "name": "ResendCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.SequenceNumber", + "kind": "field", + "name": "SequenceNumber", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.Simulator", + "kind": "field", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.TickCount", + "kind": "field", + "name": "TickCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.NetworkManager.OutgoingPacket.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UDPPacketBuffer,LibreMetaverse.Packets.PacketType)", + "kind": "constructor", + "name": "OutgoingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "buffer", + "type": "LibreMetaverse.UDPPacketBuffer", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectAnimationEventArgs", + "namespace": "LibreMetaverse", + "name": "ObjectAnimationEventArgs", + "signature": "LibreMetaverse.ObjectAnimationEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObjectAnimationEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.Animation})", + "kind": "constructor", + "name": "ObjectAnimationEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "anims", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectAnimationEventArgs.Animations", + "kind": "property", + "name": "Animations", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectAnimationEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectAnimationEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectDataBlockUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "ObjectDataBlockUpdateEventArgs", + "signature": "LibreMetaverse.ObjectDataBlockUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObjectDataBlockUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,LibreMetaverse.Primitive.ConstructionData,LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock,LibreMetaverse.ObjectMovementUpdate,LibreMetaverse.NameValue[])", + "kind": "constructor", + "name": "ObjectDataBlockUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "constructionData", + "type": "LibreMetaverse.Primitive.ConstructionData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "block", + "type": "LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectupdate", + "type": "LibreMetaverse.ObjectMovementUpdate", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameValues", + "type": "LibreMetaverse.NameValue[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectDataBlockUpdateEventArgs.Block", + "kind": "property", + "name": "Block", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectDataBlockUpdateEventArgs.ConstructionData", + "kind": "property", + "name": "ConstructionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ConstructionData", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectDataBlockUpdateEventArgs.NameValues", + "kind": "property", + "name": "NameValues", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NameValue[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectDataBlockUpdateEventArgs.Prim", + "kind": "property", + "name": "Prim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectDataBlockUpdateEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectDataBlockUpdateEventArgs.Update", + "kind": "property", + "name": "Update", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ObjectMovementUpdate", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectManager", + "namespace": "LibreMetaverse", + "name": "ObjectManager", + "signature": "LibreMetaverse.ObjectManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.ObjectManager.AvatarSitChanged", + "kind": "event", + "name": "AvatarSitChanged", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarSitChangedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.AvatarUpdate", + "kind": "event", + "name": "AvatarUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AvatarUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.KillObject", + "kind": "event", + "name": "KillObject", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.KillObjectEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.KillObjects", + "kind": "event", + "name": "KillObjects", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.KillObjectsEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ObjectAnimation", + "kind": "event", + "name": "ObjectAnimation", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ObjectAnimationEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ObjectDataBlockUpdate", + "kind": "event", + "name": "ObjectDataBlockUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ObjectDataBlockUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ObjectProperties", + "kind": "event", + "name": "ObjectProperties", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ObjectPropertiesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ObjectPropertiesFamily", + "kind": "event", + "name": "ObjectPropertiesFamily", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ObjectPropertiesFamilyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ObjectPropertiesUpdated", + "kind": "event", + "name": "ObjectPropertiesUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ObjectPropertiesUpdatedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ObjectUpdate", + "kind": "event", + "name": "ObjectUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PrimEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.ParticleUpdate", + "kind": "event", + "name": "ParticleUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParticleUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.PayPriceReply", + "kind": "event", + "name": "PayPriceReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PayPriceReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.PhysicsProperties", + "kind": "event", + "name": "PhysicsProperties", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PhysicsPropertiesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ObjectManager.TerseObjectUpdate", + "kind": "event", + "name": "TerseObjectUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.TerseObjectUpdateEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectManager.HAVOK_TIMESTEP", + "kind": "constant", + "name": "HAVOK_TIMESTEP", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "0.022222223" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "ObjectManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.AddGrass(LibreMetaverse.Simulator,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.Grass,LibreMetaverse.UUID)", + "kind": "method", + "name": "AddGrass", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "grassType", + "type": "LibreMetaverse.Grass", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.AddPrim(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ConstructionData,LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "AddPrim", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive.ConstructionData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.AddPrim(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ConstructionData,LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.PrimFlags)", + "kind": "method", + "name": "AddPrim", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive.ConstructionData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "createFlags", + "type": "LibreMetaverse.PrimFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.AddTree(LibreMetaverse.Simulator,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.Tree,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "AddTree", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "treeType", + "type": "LibreMetaverse.Tree", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newTree", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.ApplyMaterialAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "kind": "method", + "name": "ApplyMaterialAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "side", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "materialAssetId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "overrideMaterial", + "type": "LibreMetaverse.Assets.AssetMaterial", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Assets.AssetMaterial" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.AttachObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.AttachmentPoint,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "AttachObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachPoint", + "type": "LibreMetaverse.AttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.BuildBasicShape(LibreMetaverse.PrimType)", + "kind": "method", + "name": "BuildBasicShape", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ConstructionData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.PrimType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.BuyObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "BuyObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "saleType", + "type": "LibreMetaverse.SaleType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "price", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "categoryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.CleanupObjectTracking", + "kind": "method", + "name": "CleanupObjectTracking", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.ClearMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "ClearMaterialOverrideAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "side", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "kind": "method", + "name": "ClickObjectAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uvCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "stCoord", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "binormal", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CClickObjectAsync\u003Ed__113" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,System.Threading.CancellationToken)", + "kind": "method", + "name": "ClickObjectAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CClickObjectAsync\u003Ed__112" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DeedObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.UUID)", + "kind": "method", + "name": "DeedObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DeedObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "kind": "method", + "name": "DeedObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "groupOwner", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DelinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "kind": "method", + "name": "DelinkPrims", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DeselectObject(LibreMetaverse.Simulator,System.UInt32)", + "kind": "method", + "name": "DeselectObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DeselectObjects(LibreMetaverse.Simulator,System.UInt32[])", + "kind": "method", + "name": "DeselectObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.UInt32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DetachObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "kind": "method", + "name": "DetachObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.DropObject(LibreMetaverse.Simulator,System.UInt32)", + "kind": "method", + "name": "DropObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.GetPrimitive(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "GetPrimitive", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fullID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "createIfMissing", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.GetSimulatorsForObject(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetSimulatorsForObject", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Simulator\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "kind": "method", + "name": "IsNearBorder", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionSizeX", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionSizeY", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "threshold", + "type": "System.Single", + "passing": "value", + "optional": true, + "default": { + "type": "System.Single", + "value": "32" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.LinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "kind": "method", + "name": "LinkPrims", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.NavigateObjectMediaAsync(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "NavigateObjectMediaAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "face", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newURL", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CNavigateObjectMediaAsync\u003Ed__145" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestMaterialsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.IEnumerable\u003CLibreMetaverse.Materials.LegacyMaterial\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "materials", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CRequestMaterialsAsync\u003Ed__149" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestMaterialsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.IEnumerable\u003CLibreMetaverse.Materials.LegacyMaterial\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CRequestMaterialsAsync\u003Ed__148" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestObject(LibreMetaverse.Simulator,System.UInt32)", + "kind": "method", + "name": "RequestObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestObjectMediaAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.MediaEntry[]\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "version" + }, + { + "type": "System.String", + "value": "faceMedia" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CRequestObjectMediaAsync\u003Ed__147" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectPropertiesFamily(LibreMetaverse.Simulator,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestObjectPropertiesFamily", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectPropertiesFamily(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "RequestObjectPropertiesFamily", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reliable", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "kind": "method", + "name": "RequestObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.RequestPayPrice(LibreMetaverse.Simulator,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestPayPrice", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32)", + "kind": "method", + "name": "SelectObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32,System.Boolean)", + "kind": "method", + "name": "SelectObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "automaticDeselect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[])", + "kind": "method", + "name": "SelectObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.UInt32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[],System.Boolean)", + "kind": "method", + "name": "SelectObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.UInt32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "automaticDeselect", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SendMaterialUpdatesAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.GLTFMaterialUpdate},System.Threading.CancellationToken)", + "kind": "method", + "name": "SendMaterialUpdatesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "updates", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.GLTFMaterialUpdate\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CSendMaterialUpdatesAsync\u003Ed__159" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetDescription(LibreMetaverse.Simulator,System.UInt32,System.String)", + "kind": "method", + "name": "SetDescription", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "description", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetDescriptions(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "kind": "method", + "name": "SetDescriptions", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.UInt32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "descriptions", + "type": "System.String[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetExtraParamOff(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.ExtraParamType)", + "kind": "method", + "name": "SetExtraParamOff", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ExtraParamType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "kind": "method", + "name": "SetFlags", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "physical", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "temporary", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "phantom", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "castsShadow", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "SetFlags", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "physical", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "temporary", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "phantom", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "castsShadow", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "physicsType", + "type": "LibreMetaverse.PhysicsShapeType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "density", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "friction", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "restitution", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gravityMultiplier", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetFlexible(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.FlexibleData)", + "kind": "method", + "name": "SetFlexible", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flexible", + "type": "LibreMetaverse.Primitive.FlexibleData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetLight(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.LightData)", + "kind": "method", + "name": "SetLight", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "light", + "type": "LibreMetaverse.Primitive.LightData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetMaterial(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Material)", + "kind": "method", + "name": "SetMaterial", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "material", + "type": "LibreMetaverse.Material", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetMaterialOverrideAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "side", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "overrideMaterial", + "type": "LibreMetaverse.Assets.AssetMaterial", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetName(LibreMetaverse.Simulator,System.UInt32,System.String)", + "kind": "method", + "name": "SetName", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetNames(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "kind": "method", + "name": "SetNames", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.UInt32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "names", + "type": "System.String[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetObjectsGroup(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "kind": "method", + "name": "SetObjectsGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIds", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetPermissions(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.PermissionWho,LibreMetaverse.PermissionMask,System.Boolean)", + "kind": "method", + "name": "SetPermissions", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "who", + "type": "LibreMetaverse.PermissionWho", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "permissions", + "type": "LibreMetaverse.PermissionMask", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "set", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3)", + "kind": "method", + "name": "SetPosition", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean)", + "kind": "method", + "name": "SetPosition", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "childOnly", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "SetRotation", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion,System.Boolean)", + "kind": "method", + "name": "SetRotation", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "quat", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "childOnly", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.SaleType,System.Int32)", + "kind": "method", + "name": "SetSaleInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localIDs", + "type": "System.Collections.Generic.List\u003CSystem.UInt32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "saleType", + "type": "LibreMetaverse.SaleType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "price", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32)", + "kind": "method", + "name": "SetSaleInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "saleType", + "type": "LibreMetaverse.SaleType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "price", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetScale(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean,System.Boolean)", + "kind": "method", + "name": "SetScale", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "childOnly", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uniform", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetSculpt(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.SculptData)", + "kind": "method", + "name": "SetSculpt", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculpt", + "type": "LibreMetaverse.Primitive.SculptData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetShape(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.ConstructionData)", + "kind": "method", + "name": "SetShape", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive.ConstructionData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry)", + "kind": "method", + "name": "SetTextures", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "textures", + "type": "LibreMetaverse.Primitive.TextureEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry,System.String)", + "kind": "method", + "name": "SetTextures", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "textures", + "type": "LibreMetaverse.Primitive.TextureEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mediaUrl", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.TrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "TrackObjectInSimulator", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.UntrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "kind": "method", + "name": "UntrackObjectInSimulator", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.UpdateObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.UpdateType)", + "kind": "method", + "name": "UpdateObject", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.UpdateType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObjectManager.UpdateObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.MediaEntry[],LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "UpdateObjectMediaAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceMedia", + "type": "LibreMetaverse.MediaEntry[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ObjectManager.\u003CUpdateObjectMediaAsync\u003Ed__146" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectMediaEventArgs", + "namespace": "LibreMetaverse", + "name": "ObjectMediaEventArgs", + "signature": "LibreMetaverse.ObjectMediaEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObjectMediaEventArgs.#ctor(System.Boolean,System.String,LibreMetaverse.MediaEntry[])", + "kind": "constructor", + "name": "ObjectMediaEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "success", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "faceMedia", + "type": "LibreMetaverse.MediaEntry[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectMediaEventArgs.FaceMedia", + "kind": "property", + "name": "FaceMedia", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaEntry[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectMediaEventArgs.Success", + "kind": "property", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectMediaEventArgs.Version", + "kind": "property", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectMovementUpdate", + "namespace": "LibreMetaverse", + "name": "ObjectMovementUpdate", + "signature": "LibreMetaverse.ObjectMovementUpdate", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Acceleration", + "kind": "field", + "name": "Acceleration", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.AngularVelocity", + "kind": "field", + "name": "AngularVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Avatar", + "kind": "field", + "name": "Avatar", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.CollisionPlane", + "kind": "field", + "name": "CollisionPlane", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Textures", + "kind": "field", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntry", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Velocity", + "kind": "field", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectPropertiesEventArgs", + "namespace": "LibreMetaverse", + "name": "ObjectPropertiesEventArgs", + "signature": "LibreMetaverse.ObjectPropertiesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObjectPropertiesEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ObjectProperties)", + "kind": "constructor", + "name": "ObjectPropertiesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "props", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectPropertiesEventArgs.Properties", + "kind": "property", + "name": "Properties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectPropertiesEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectPropertiesFamilyEventArgs", + "namespace": "LibreMetaverse", + "name": "ObjectPropertiesFamilyEventArgs", + "signature": "LibreMetaverse.ObjectPropertiesFamilyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObjectPropertiesFamilyEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ObjectProperties,LibreMetaverse.ReportType)", + "kind": "constructor", + "name": "ObjectPropertiesFamilyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "props", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ReportType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectPropertiesFamilyEventArgs.Properties", + "kind": "property", + "name": "Properties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectPropertiesFamilyEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectPropertiesFamilyEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ReportType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectPropertiesUpdatedEventArgs", + "namespace": "LibreMetaverse", + "name": "ObjectPropertiesUpdatedEventArgs", + "signature": "LibreMetaverse.ObjectPropertiesUpdatedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.ObjectPropertiesEventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObjectPropertiesUpdatedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,LibreMetaverse.Primitive.ObjectProperties)", + "kind": "constructor", + "name": "ObjectPropertiesUpdatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "props", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObjectPropertiesUpdatedEventArgs.Prim", + "kind": "property", + "name": "Prim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectReturnType", + "namespace": "LibreMetaverse", + "name": "ObjectReturnType", + "signature": "LibreMetaverse.ObjectReturnType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ObjectReturnType.Group", + "kind": "enum_value", + "name": "Group", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectReturnType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectReturnType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectReturnType.List", + "kind": "enum_value", + "name": "List", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectReturnType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectReturnType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectReturnType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectReturnType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectReturnType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectReturnType.Other", + "kind": "enum_value", + "name": "Other", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectReturnType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectReturnType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectReturnType.Owner", + "kind": "enum_value", + "name": "Owner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectReturnType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectReturnType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectReturnType.Sell", + "kind": "enum_value", + "name": "Sell", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectReturnType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectReturnType", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObservableDictionary\u00602", + "namespace": "LibreMetaverse", + "name": "ObservableDictionary\u00602", + "signature": "LibreMetaverse.ObservableDictionary\u003CTKey, TValue\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TValue", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.#ctor", + "kind": "constructor", + "name": "ObservableDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.#ctor(System.Int32)", + "kind": "constructor", + "name": "ObservableDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Add(\u00600,\u00601)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.AddDelegate(LibreMetaverse.DictionaryEventAction,LibreMetaverse.DictionaryChangeCallback)", + "kind": "method", + "name": "AddDelegate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.DictionaryEventAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "LibreMetaverse.DictionaryChangeCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.ContainsKey(\u00600)", + "kind": "method", + "name": "ContainsKey", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.ContainsValue(\u00601)", + "kind": "method", + "name": "ContainsValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Find(System.Predicate{\u00601})", + "kind": "method", + "name": "Find", + "static": false, + "visibility": "public", + "type": "TValue", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "match", + "type": "System.Predicate\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.FindAll(System.Predicate{\u00600})", + "kind": "method", + "name": "FindAll", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CTKey\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "match", + "type": "System.Predicate\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.FindAll(System.Predicate{\u00601})", + "kind": "method", + "name": "FindAll", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CTValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "match", + "type": "System.Predicate\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.IEnumerator", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Remove(\u00600)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.RemoveDelegate(LibreMetaverse.DictionaryEventAction,LibreMetaverse.DictionaryChangeCallback)", + "kind": "method", + "name": "RemoveDelegate", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.DictionaryEventAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "LibreMetaverse.DictionaryChangeCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.TryGetValue(\u00600,\u00601@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObservableDictionary\u00602.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ObservableDictionary\u00602.Item(\u00600)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "TValue", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PacketEventDictionary", + "namespace": "LibreMetaverse", + "name": "PacketEventDictionary", + "signature": "LibreMetaverse.PacketEventDictionary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.PacketEventDictionary.Client", + "kind": "field", + "name": "Client", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridClient", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PacketEventDictionary.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "PacketEventDictionary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PacketEventDictionary.InvokeRaiseEvent(LibreMetaverse.Packets.PacketType,LibreMetaverse.Packets.Packet,LibreMetaverse.Simulator)", + "kind": "method", + "name": "InvokeRaiseEvent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packetType", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PacketEventDictionary.RegisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "kind": "method", + "name": "RegisterEvent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packetType", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventHandler", + "type": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "isAsync", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PacketEventDictionary.UnregisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "kind": "method", + "name": "UnregisterEvent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packetType", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventHandler", + "type": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PacketFrequency", + "namespace": "LibreMetaverse", + "name": "PacketFrequency", + "signature": "LibreMetaverse.PacketFrequency", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PacketFrequency.High", + "kind": "enum_value", + "name": "High", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PacketFrequency", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PacketFrequency", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketFrequency.Low", + "kind": "enum_value", + "name": "Low", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PacketFrequency", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PacketFrequency", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketFrequency.Medium", + "kind": "enum_value", + "name": "Medium", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PacketFrequency", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PacketFrequency", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PacketReceivedEventArgs", + "namespace": "LibreMetaverse", + "name": "PacketReceivedEventArgs", + "signature": "LibreMetaverse.PacketReceivedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PacketReceivedEventArgs.#ctor(LibreMetaverse.Packets.Packet,LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "PacketReceivedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PacketReceivedEventArgs.Packet", + "kind": "property", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PacketReceivedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PacketSentEventArgs", + "namespace": "LibreMetaverse", + "name": "PacketSentEventArgs", + "signature": "LibreMetaverse.PacketSentEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PacketSentEventArgs.#ctor(System.Byte[],System.Int32,LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "PacketSentEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytesSent", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PacketSentEventArgs.Data", + "kind": "property", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PacketSentEventArgs.SentBytes", + "kind": "property", + "name": "SentBytes", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PacketSentEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PacketSettings", + "namespace": "LibreMetaverse", + "name": "PacketSettings", + "signature": "LibreMetaverse.PacketSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PacketSettings.EnableSimStats", + "kind": "field", + "name": "EnableSimStats", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketSettings.MaxPendingAcks", + "kind": "field", + "name": "MaxPendingAcks", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketSettings.MaxResendCount", + "kind": "field", + "name": "MaxResendCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketSettings.SendPings", + "kind": "field", + "name": "SendPings", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketSettings.StatsQueueSize", + "kind": "field", + "name": "StatsQueueSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketSettings.ThrottleOutgoing", + "kind": "field", + "name": "ThrottleOutgoing", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PacketSettings.TrackUtilization", + "kind": "field", + "name": "TrackUtilization", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PacketSettings.#ctor", + "kind": "constructor", + "name": "PacketSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AbortXferPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AbortXferPacket", + "signature": "LibreMetaverse.Packets.AbortXferPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AbortXferPacket.XferID", + "kind": "field", + "name": "XferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AbortXferPacket.XferIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor", + "kind": "constructor", + "name": "AbortXferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AbortXferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AbortXferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AbortXferPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AbortXferPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "XferIDBlock", + "signature": "LibreMetaverse.Packets.AbortXferPacket.XferIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.Result", + "kind": "field", + "name": "Result", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.#ctor", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptCallingCardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AcceptCallingCardPacket", + "signature": "LibreMetaverse.Packets.AcceptCallingCardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlock", + "kind": "field", + "name": "TransactionBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor", + "kind": "constructor", + "name": "AcceptCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AcceptCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AcceptCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionBlockBlock", + "signature": "LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.#ctor", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptFriendshipPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AcceptFriendshipPacket", + "signature": "LibreMetaverse.Packets.AcceptFriendshipPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlock", + "kind": "field", + "name": "TransactionBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor", + "kind": "constructor", + "name": "AcceptFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AcceptFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AcceptFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionBlockBlock", + "signature": "LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.#ctor", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ActivateGesturesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ActivateGesturesPacket", + "signature": "LibreMetaverse.Packets.ActivateGesturesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor", + "kind": "constructor", + "name": "ActivateGesturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ActivateGesturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ActivateGesturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.GestureFlags", + "kind": "field", + "name": "GestureFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ActivateGroupPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ActivateGroupPacket", + "signature": "LibreMetaverse.Packets.ActivateGroupPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGroupPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor", + "kind": "constructor", + "name": "ActivateGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ActivateGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ActivateGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGroupPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGroupPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AddCircuitCodePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AddCircuitCodePacket", + "signature": "LibreMetaverse.Packets.AddCircuitCodePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor", + "kind": "constructor", + "name": "AddCircuitCodePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AddCircuitCodePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AddCircuitCodePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AddCircuitCodePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AddCircuitCodePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CircuitCodeBlock", + "signature": "LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.Code", + "kind": "field", + "name": "Code", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.#ctor", + "kind": "constructor", + "name": "CircuitCodeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CircuitCodeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAlertMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentAlertMessagePacket", + "signature": "LibreMetaverse.Packets.AgentAlertMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertData", + "kind": "field", + "name": "AlertData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor", + "kind": "constructor", + "name": "AgentAlertMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentAlertMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentAlertMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AlertDataBlock", + "signature": "LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.Modal", + "kind": "field", + "name": "Modal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.#ctor", + "kind": "constructor", + "name": "AlertDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AlertDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAnimationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentAnimationPacket", + "signature": "LibreMetaverse.Packets.AgentAnimationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AnimationList", + "kind": "field", + "name": "AnimationList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventList", + "kind": "field", + "name": "PhysicalAvatarEventList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor", + "kind": "constructor", + "name": "AgentAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AnimationListBlock", + "signature": "LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.AnimID", + "kind": "field", + "name": "AnimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.StartAnim", + "kind": "field", + "name": "StartAnim", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.#ctor", + "kind": "constructor", + "name": "AnimationListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AnimationListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PhysicalAvatarEventListBlock", + "signature": "LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.TypeData", + "kind": "field", + "name": "TypeData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.#ctor", + "kind": "constructor", + "name": "PhysicalAvatarEventListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PhysicalAvatarEventListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentCachedTexturePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentCachedTexturePacket", + "signature": "LibreMetaverse.Packets.AgentCachedTexturePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableData", + "kind": "field", + "name": "WearableData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor", + "kind": "constructor", + "name": "AgentCachedTexturePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentCachedTexturePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentCachedTexturePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.SerialNum", + "kind": "field", + "name": "SerialNum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "WearableDataBlock", + "signature": "LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.TextureIndex", + "kind": "field", + "name": "TextureIndex", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.#ctor", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentCachedTextureResponsePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentCachedTextureResponsePacket", + "signature": "LibreMetaverse.Packets.AgentCachedTextureResponsePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableData", + "kind": "field", + "name": "WearableData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor", + "kind": "constructor", + "name": "AgentCachedTextureResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentCachedTextureResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentCachedTextureResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.SerialNum", + "kind": "field", + "name": "SerialNum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "WearableDataBlock", + "signature": "LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.HostName", + "kind": "field", + "name": "HostName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.TextureID", + "kind": "field", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.TextureIndex", + "kind": "field", + "name": "TextureIndex", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.#ctor", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentDataUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataUpdatePacket", + "signature": "LibreMetaverse.Packets.AgentDataUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor", + "kind": "constructor", + "name": "AgentDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDataUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDataUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.ActiveGroupID", + "kind": "field", + "name": "ActiveGroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.GroupPowers", + "kind": "field", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.GroupTitle", + "kind": "field", + "name": "GroupTitle", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentDataUpdateRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataUpdateRequestPacket", + "signature": "LibreMetaverse.Packets.AgentDataUpdateRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor", + "kind": "constructor", + "name": "AgentDataUpdateRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataUpdateRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataUpdateRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentDropGroupPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDropGroupPacket", + "signature": "LibreMetaverse.Packets.AgentDropGroupPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentDropGroupPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor", + "kind": "constructor", + "name": "AgentDropGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDropGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDropGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDropGroupPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDropGroupPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentFOVPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentFOVPacket", + "signature": "LibreMetaverse.Packets.AgentFOVPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.FOVBlock", + "kind": "field", + "name": "FOVBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor", + "kind": "constructor", + "name": "AgentFOVPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentFOVPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentFOVPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FOVBlockBlock", + "signature": "LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.GenCounter", + "kind": "field", + "name": "GenCounter", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.VerticalAngle", + "kind": "field", + "name": "VerticalAngle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.#ctor", + "kind": "constructor", + "name": "FOVBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FOVBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentGroupDataUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentGroupDataUpdatePacket", + "signature": "LibreMetaverse.Packets.AgentGroupDataUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor", + "kind": "constructor", + "name": "AgentGroupDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentGroupDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentGroupDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.Contribution", + "kind": "field", + "name": "Contribution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.GroupInsigniaID", + "kind": "field", + "name": "GroupInsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.GroupPowers", + "kind": "field", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentHeightWidthPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentHeightWidthPacket", + "signature": "LibreMetaverse.Packets.AgentHeightWidthPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlock", + "kind": "field", + "name": "HeightWidthBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor", + "kind": "constructor", + "name": "AgentHeightWidthPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentHeightWidthPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentHeightWidthPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HeightWidthBlockBlock", + "signature": "LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.GenCounter", + "kind": "field", + "name": "GenCounter", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.Height", + "kind": "field", + "name": "Height", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.Width", + "kind": "field", + "name": "Width", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.#ctor", + "kind": "constructor", + "name": "HeightWidthBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HeightWidthBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentIsNowWearingPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentIsNowWearingPacket", + "signature": "LibreMetaverse.Packets.AgentIsNowWearingPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableData", + "kind": "field", + "name": "WearableData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor", + "kind": "constructor", + "name": "AgentIsNowWearingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentIsNowWearingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentIsNowWearingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "WearableDataBlock", + "signature": "LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.WearableType", + "kind": "field", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.#ctor", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentMovementCompletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentMovementCompletePacket", + "signature": "LibreMetaverse.Packets.AgentMovementCompletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.SimData", + "kind": "field", + "name": "SimData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor", + "kind": "constructor", + "name": "AgentMovementCompletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentMovementCompletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentMovementCompletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.Timestamp", + "kind": "field", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimDataBlock", + "signature": "LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ChannelVersion", + "kind": "field", + "name": "ChannelVersion", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.#ctor", + "kind": "constructor", + "name": "SimDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentPausePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentPausePacket", + "signature": "LibreMetaverse.Packets.AgentPausePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentPausePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor", + "kind": "constructor", + "name": "AgentPausePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentPausePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentPausePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentPausePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentPausePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.SerialNum", + "kind": "field", + "name": "SerialNum", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentQuitCopyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentQuitCopyPacket", + "signature": "LibreMetaverse.Packets.AgentQuitCopyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlock", + "kind": "field", + "name": "FuseBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor", + "kind": "constructor", + "name": "AgentQuitCopyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentQuitCopyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentQuitCopyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FuseBlockBlock", + "signature": "LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ViewerCircuitCode", + "kind": "field", + "name": "ViewerCircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.#ctor", + "kind": "constructor", + "name": "FuseBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FuseBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentRequestSitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentRequestSitPacket", + "signature": "LibreMetaverse.Packets.AgentRequestSitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentRequestSitPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObject", + "kind": "field", + "name": "TargetObject", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor", + "kind": "constructor", + "name": "AgentRequestSitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentRequestSitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentRequestSitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TargetObjectBlock", + "signature": "LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.Offset", + "kind": "field", + "name": "Offset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.#ctor", + "kind": "constructor", + "name": "TargetObjectBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TargetObjectBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentResumePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentResumePacket", + "signature": "LibreMetaverse.Packets.AgentResumePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentResumePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor", + "kind": "constructor", + "name": "AgentResumePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentResumePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentResumePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentResumePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentResumePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.SerialNum", + "kind": "field", + "name": "SerialNum", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSetAppearancePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentSetAppearancePacket", + "signature": "LibreMetaverse.Packets.AgentSetAppearancePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParam", + "kind": "field", + "name": "VisualParam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableData", + "kind": "field", + "name": "WearableData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor", + "kind": "constructor", + "name": "AgentSetAppearancePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentSetAppearancePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentSetAppearancePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.SerialNum", + "kind": "field", + "name": "SerialNum", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.TextureEntry", + "kind": "field", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock", + "namespace": "LibreMetaverse.Packets", + "name": "VisualParamBlock", + "signature": "LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ParamValue", + "kind": "field", + "name": "ParamValue", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.#ctor", + "kind": "constructor", + "name": "VisualParamBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VisualParamBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "WearableDataBlock", + "signature": "LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.CacheID", + "kind": "field", + "name": "CacheID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.TextureIndex", + "kind": "field", + "name": "TextureIndex", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.#ctor", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentSitPacket", + "signature": "LibreMetaverse.Packets.AgentSitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSitPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor", + "kind": "constructor", + "name": "AgentSitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentSitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentSitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentThrottlePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentThrottlePacket", + "signature": "LibreMetaverse.Packets.AgentThrottlePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.Throttle", + "kind": "field", + "name": "Throttle", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor", + "kind": "constructor", + "name": "AgentThrottlePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentThrottlePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentThrottlePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ThrottleBlock", + "signature": "LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.GenCounter", + "kind": "field", + "name": "GenCounter", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.Throttles", + "kind": "field", + "name": "Throttles", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.#ctor", + "kind": "constructor", + "name": "ThrottleBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ThrottleBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentUpdatePacket", + "signature": "LibreMetaverse.Packets.AgentUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor", + "kind": "constructor", + "name": "AgentUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.BodyRotation", + "kind": "field", + "name": "BodyRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.CameraAtAxis", + "kind": "field", + "name": "CameraAtAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.CameraCenter", + "kind": "field", + "name": "CameraCenter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.CameraLeftAxis", + "kind": "field", + "name": "CameraLeftAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.CameraUpAxis", + "kind": "field", + "name": "CameraUpAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ControlFlags", + "kind": "field", + "name": "ControlFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.Far", + "kind": "field", + "name": "Far", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.HeadRotation", + "kind": "field", + "name": "HeadRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentWearablesRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentWearablesRequestPacket", + "signature": "LibreMetaverse.Packets.AgentWearablesRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor", + "kind": "constructor", + "name": "AgentWearablesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentWearablesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentWearablesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentWearablesUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AgentWearablesUpdatePacket", + "signature": "LibreMetaverse.Packets.AgentWearablesUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableData", + "kind": "field", + "name": "WearableData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor", + "kind": "constructor", + "name": "AgentWearablesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentWearablesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentWearablesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.SerialNum", + "kind": "field", + "name": "SerialNum", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "WearableDataBlock", + "signature": "LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.WearableType", + "kind": "field", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.#ctor", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AlertMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AlertMessagePacket", + "signature": "LibreMetaverse.Packets.AlertMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AgentInfo", + "kind": "field", + "name": "AgentInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertData", + "kind": "field", + "name": "AlertData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertInfo", + "kind": "field", + "name": "AlertInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor", + "kind": "constructor", + "name": "AlertMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AlertMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AlertMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentInfoBlock", + "signature": "LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.#ctor", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AlertDataBlock", + "signature": "LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.#ctor", + "kind": "constructor", + "name": "AlertDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AlertDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AlertInfoBlock", + "signature": "LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ExtraParams", + "kind": "field", + "name": "ExtraParams", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.#ctor", + "kind": "constructor", + "name": "AlertInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AlertInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AssetUploadCompletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AssetUploadCompletePacket", + "signature": "LibreMetaverse.Packets.AssetUploadCompletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlock", + "kind": "field", + "name": "AssetBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor", + "kind": "constructor", + "name": "AssetUploadCompletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AssetUploadCompletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AssetUploadCompletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AssetUploadCompletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AssetUploadCompletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AssetBlockBlock", + "signature": "LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.UUID", + "kind": "field", + "name": "UUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.#ctor", + "kind": "constructor", + "name": "AssetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AssetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AssetUploadRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AssetUploadRequestPacket", + "signature": "LibreMetaverse.Packets.AssetUploadRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlock", + "kind": "field", + "name": "AssetBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor", + "kind": "constructor", + "name": "AssetUploadRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AssetUploadRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AssetUploadRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AssetUploadRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AssetUploadRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AssetBlockBlock", + "signature": "LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.AssetData", + "kind": "field", + "name": "AssetData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.StoreLocal", + "kind": "field", + "name": "StoreLocal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.Tempfile", + "kind": "field", + "name": "Tempfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.#ctor", + "kind": "constructor", + "name": "AssetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AssetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AtomicPassObjectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AtomicPassObjectPacket", + "signature": "LibreMetaverse.Packets.AtomicPassObjectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskData", + "kind": "field", + "name": "TaskData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor", + "kind": "constructor", + "name": "AtomicPassObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AtomicPassObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AtomicPassObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AtomicPassObjectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AtomicPassObjectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TaskDataBlock", + "signature": "LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.AttachmentNeedsSave", + "kind": "field", + "name": "AttachmentNeedsSave", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.#ctor", + "kind": "constructor", + "name": "TaskDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TaskDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AttachedSoundGainChangePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AttachedSoundGainChangePacket", + "signature": "LibreMetaverse.Packets.AttachedSoundGainChangePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor", + "kind": "constructor", + "name": "AttachedSoundGainChangePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachedSoundGainChangePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachedSoundGainChangePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AttachedSoundGainChangePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AttachedSoundGainChangePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.Gain", + "kind": "field", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AttachedSoundPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AttachedSoundPacket", + "signature": "LibreMetaverse.Packets.AttachedSoundPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor", + "kind": "constructor", + "name": "AttachedSoundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachedSoundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachedSoundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AttachedSoundPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AttachedSoundPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.Gain", + "kind": "field", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.SoundID", + "kind": "field", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAnimationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarAnimationPacket", + "signature": "LibreMetaverse.Packets.AvatarAnimationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationList", + "kind": "field", + "name": "AnimationList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceList", + "kind": "field", + "name": "AnimationSourceList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventList", + "kind": "field", + "name": "PhysicalAvatarEventList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.Sender", + "kind": "field", + "name": "Sender", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor", + "kind": "constructor", + "name": "AvatarAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AnimationListBlock", + "signature": "LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.AnimID", + "kind": "field", + "name": "AnimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.AnimSequenceID", + "kind": "field", + "name": "AnimSequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.#ctor", + "kind": "constructor", + "name": "AnimationListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AnimationListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AnimationSourceListBlock", + "signature": "LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.#ctor", + "kind": "constructor", + "name": "AnimationSourceListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AnimationSourceListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PhysicalAvatarEventListBlock", + "signature": "LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.TypeData", + "kind": "field", + "name": "TypeData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.#ctor", + "kind": "constructor", + "name": "PhysicalAvatarEventListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PhysicalAvatarEventListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SenderBlock", + "signature": "LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.#ctor", + "kind": "constructor", + "name": "SenderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SenderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarAppearancePacket", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceData", + "kind": "field", + "name": "AppearanceData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHover", + "kind": "field", + "name": "AppearanceHover", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlock", + "kind": "field", + "name": "AttachmentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.Sender", + "kind": "field", + "name": "Sender", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParam", + "kind": "field", + "name": "VisualParam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor", + "kind": "constructor", + "name": "AvatarAppearancePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarAppearancePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarAppearancePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AppearanceDataBlock", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.AppearanceVersion", + "kind": "field", + "name": "AppearanceVersion", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.CofVersion", + "kind": "field", + "name": "CofVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.#ctor", + "kind": "constructor", + "name": "AppearanceDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AppearanceDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AppearanceHoverBlock", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.HoverHeight", + "kind": "field", + "name": "HoverHeight", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.#ctor", + "kind": "constructor", + "name": "AppearanceHoverBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AppearanceHoverBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AttachmentBlockBlock", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.AttachmentPoint", + "kind": "field", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.#ctor", + "kind": "constructor", + "name": "AttachmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.TextureEntry", + "kind": "field", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SenderBlock", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.IsTrial", + "kind": "field", + "name": "IsTrial", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.#ctor", + "kind": "constructor", + "name": "SenderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SenderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock", + "namespace": "LibreMetaverse.Packets", + "name": "VisualParamBlock", + "signature": "LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ParamValue", + "kind": "field", + "name": "ParamValue", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.#ctor", + "kind": "constructor", + "name": "VisualParamBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VisualParamBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarClassifiedReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarClassifiedReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarClassifiedReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarClassifiedReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarClassifiedReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarClassifiedReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarGroupsReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarGroupsReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarGroupsReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupData", + "kind": "field", + "name": "NewGroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarGroupsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarGroupsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarGroupsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupInsigniaID", + "kind": "field", + "name": "GroupInsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupPowers", + "kind": "field", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupTitle", + "kind": "field", + "name": "GroupTitle", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NewGroupDataBlock", + "signature": "LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ListInProfile", + "kind": "field", + "name": "ListInProfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.#ctor", + "kind": "constructor", + "name": "NewGroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NewGroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarInterestsReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarInterestsReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarInterestsReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesData", + "kind": "field", + "name": "PropertiesData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarInterestsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarInterestsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarInterestsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PropertiesDataBlock", + "signature": "LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.LanguagesText", + "kind": "field", + "name": "LanguagesText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.SkillsMask", + "kind": "field", + "name": "SkillsMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.SkillsText", + "kind": "field", + "name": "SkillsText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.WantToMask", + "kind": "field", + "name": "WantToMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.WantToText", + "kind": "field", + "name": "WantToText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.#ctor", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarInterestsUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarInterestsUpdatePacket", + "signature": "LibreMetaverse.Packets.AvatarInterestsUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesData", + "kind": "field", + "name": "PropertiesData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor", + "kind": "constructor", + "name": "AvatarInterestsUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarInterestsUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarInterestsUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PropertiesDataBlock", + "signature": "LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.LanguagesText", + "kind": "field", + "name": "LanguagesText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.SkillsMask", + "kind": "field", + "name": "SkillsMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.SkillsText", + "kind": "field", + "name": "SkillsText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.WantToMask", + "kind": "field", + "name": "WantToMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.WantToText", + "kind": "field", + "name": "WantToText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.#ctor", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarNotesReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarNotesReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarNotesReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarNotesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarNotesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarNotesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.Notes", + "kind": "field", + "name": "Notes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarNotesUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarNotesUpdatePacket", + "signature": "LibreMetaverse.Packets.AvatarNotesUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor", + "kind": "constructor", + "name": "AvatarNotesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarNotesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarNotesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.Notes", + "kind": "field", + "name": "Notes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPickerReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarPickerReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarPickerReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPickerReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPickerReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPickerRequestBackendPacket", + "signature": "LibreMetaverse.Packets.AvatarPickerRequestBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor", + "kind": "constructor", + "name": "AvatarPickerRequestBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPickerRequestBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPickerRequestBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.GodLevel", + "kind": "field", + "name": "GodLevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPickerRequestPacket", + "signature": "LibreMetaverse.Packets.AvatarPickerRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor", + "kind": "constructor", + "name": "AvatarPickerRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPickerRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPickerRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPicksReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPicksReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarPicksReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarPicksReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPicksReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPicksReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.PickID", + "kind": "field", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.PickName", + "kind": "field", + "name": "PickName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPropertiesReplyPacket", + "signature": "LibreMetaverse.Packets.AvatarPropertiesReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesData", + "kind": "field", + "name": "PropertiesData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor", + "kind": "constructor", + "name": "AvatarPropertiesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PropertiesDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.AboutText", + "kind": "field", + "name": "AboutText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.BornOn", + "kind": "field", + "name": "BornOn", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.CharterMember", + "kind": "field", + "name": "CharterMember", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FLAboutText", + "kind": "field", + "name": "FLAboutText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FLImageID", + "kind": "field", + "name": "FLImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.PartnerID", + "kind": "field", + "name": "PartnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ProfileURL", + "kind": "field", + "name": "ProfileURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.#ctor", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPropertiesRequestBackendPacket", + "signature": "LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor", + "kind": "constructor", + "name": "AvatarPropertiesRequestBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesRequestBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesRequestBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.GodLevel", + "kind": "field", + "name": "GodLevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.WebProfilesDisabled", + "kind": "field", + "name": "WebProfilesDisabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPropertiesRequestPacket", + "signature": "LibreMetaverse.Packets.AvatarPropertiesRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor", + "kind": "constructor", + "name": "AvatarPropertiesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.AvatarID", + "kind": "field", + "name": "AvatarID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarPropertiesUpdatePacket", + "signature": "LibreMetaverse.Packets.AvatarPropertiesUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesData", + "kind": "field", + "name": "PropertiesData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor", + "kind": "constructor", + "name": "AvatarPropertiesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarPropertiesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PropertiesDataBlock", + "signature": "LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.AboutText", + "kind": "field", + "name": "AboutText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FLAboutText", + "kind": "field", + "name": "FLAboutText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FLImageID", + "kind": "field", + "name": "FLImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ProfileURL", + "kind": "field", + "name": "ProfileURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.#ctor", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PropertiesDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarSitResponsePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarSitResponsePacket", + "signature": "LibreMetaverse.Packets.AvatarSitResponsePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObject", + "kind": "field", + "name": "SitObject", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransform", + "kind": "field", + "name": "SitTransform", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor", + "kind": "constructor", + "name": "AvatarSitResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarSitResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarSitResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SitObjectBlock", + "signature": "LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.#ctor", + "kind": "constructor", + "name": "SitObjectBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SitObjectBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SitTransformBlock", + "signature": "LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.AutoPilot", + "kind": "field", + "name": "AutoPilot", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.CameraAtOffset", + "kind": "field", + "name": "CameraAtOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.CameraEyeOffset", + "kind": "field", + "name": "CameraEyeOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ForceMouselook", + "kind": "field", + "name": "ForceMouselook", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.SitPosition", + "kind": "field", + "name": "SitPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.SitRotation", + "kind": "field", + "name": "SitRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.#ctor", + "kind": "constructor", + "name": "SitTransformBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SitTransformBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarTextureUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "AvatarTextureUpdatePacket", + "signature": "LibreMetaverse.Packets.AvatarTextureUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureData", + "kind": "field", + "name": "TextureData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableData", + "kind": "field", + "name": "WearableData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor", + "kind": "constructor", + "name": "AvatarTextureUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarTextureUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AvatarTextureUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.TexturesChanged", + "kind": "field", + "name": "TexturesChanged", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TextureDataBlock", + "signature": "LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.TextureID", + "kind": "field", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.#ctor", + "kind": "constructor", + "name": "TextureDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TextureDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "WearableDataBlock", + "signature": "LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.CacheID", + "kind": "field", + "name": "CacheID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.HostName", + "kind": "field", + "name": "HostName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.TextureIndex", + "kind": "field", + "name": "TextureIndex", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.#ctor", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "WearableDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BulkUpdateInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "BulkUpdateInventoryPacket", + "signature": "LibreMetaverse.Packets.BulkUpdateInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemData", + "kind": "field", + "name": "ItemData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor", + "kind": "constructor", + "name": "BulkUpdateInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "BulkUpdateInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "BulkUpdateInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ItemDataBlock", + "signature": "LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.#ctor", + "kind": "constructor", + "name": "ItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BuyObjectInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "BuyObjectInventoryPacket", + "signature": "LibreMetaverse.Packets.BuyObjectInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor", + "kind": "constructor", + "name": "BuyObjectInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "BuyObjectInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "BuyObjectInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CameraConstraintPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CameraConstraintPacket", + "signature": "LibreMetaverse.Packets.CameraConstraintPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlane", + "kind": "field", + "name": "CameraCollidePlane", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor", + "kind": "constructor", + "name": "CameraConstraintPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CameraConstraintPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CameraConstraintPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CameraConstraintPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CameraConstraintPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CameraCollidePlaneBlock", + "signature": "LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.Plane", + "kind": "field", + "name": "Plane", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.#ctor", + "kind": "constructor", + "name": "CameraCollidePlaneBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CameraCollidePlaneBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CancelAuctionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CancelAuctionPacket", + "signature": "LibreMetaverse.Packets.CancelAuctionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CancelAuctionPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor", + "kind": "constructor", + "name": "CancelAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CancelAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CancelAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CancelAuctionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CancelAuctionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChangeInventoryItemFlagsPacket", + "signature": "LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor", + "kind": "constructor", + "name": "ChangeInventoryItemFlagsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChangeInventoryItemFlagsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChangeInventoryItemFlagsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChangeUserRightsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChangeUserRightsPacket", + "signature": "LibreMetaverse.Packets.ChangeUserRightsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChangeUserRightsPacket.Rights", + "kind": "field", + "name": "Rights", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor", + "kind": "constructor", + "name": "ChangeUserRightsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChangeUserRightsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChangeUserRightsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RightsBlock", + "signature": "LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.AgentRelated", + "kind": "field", + "name": "AgentRelated", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.RelatedRights", + "kind": "field", + "name": "RelatedRights", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.#ctor", + "kind": "constructor", + "name": "RightsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RightsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatFromSimulatorPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChatFromSimulatorPacket", + "signature": "LibreMetaverse.Packets.ChatFromSimulatorPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatData", + "kind": "field", + "name": "ChatData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor", + "kind": "constructor", + "name": "ChatFromSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatFromSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatFromSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromSimulatorPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromSimulatorPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ChatDataBlock", + "signature": "LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Audible", + "kind": "field", + "name": "Audible", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ChatType", + "kind": "field", + "name": "ChatType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromName", + "kind": "field", + "name": "FromName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.SourceType", + "kind": "field", + "name": "SourceType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.#ctor", + "kind": "constructor", + "name": "ChatDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatFromViewerPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChatFromViewerPacket", + "signature": "LibreMetaverse.Packets.ChatFromViewerPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatData", + "kind": "field", + "name": "ChatData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor", + "kind": "constructor", + "name": "ChatFromViewerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatFromViewerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatFromViewerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ChatDataBlock", + "signature": "LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Channel", + "kind": "field", + "name": "Channel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.#ctor", + "kind": "constructor", + "name": "ChatDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatPassPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChatPassPacket", + "signature": "LibreMetaverse.Packets.ChatPassPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatData", + "kind": "field", + "name": "ChatData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor", + "kind": "constructor", + "name": "ChatPassPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatPassPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatPassPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatPassPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatPassPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ChatDataBlock", + "signature": "LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Channel", + "kind": "field", + "name": "Channel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Radius", + "kind": "field", + "name": "Radius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.SourceType", + "kind": "field", + "name": "SourceType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.#ctor", + "kind": "constructor", + "name": "ChatDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChatDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CheckParcelAuctionsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CheckParcelAuctionsPacket", + "signature": "LibreMetaverse.Packets.CheckParcelAuctionsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor", + "kind": "constructor", + "name": "CheckParcelAuctionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CheckParcelAuctionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CheckParcelAuctionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CheckParcelAuctionsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CheckParcelAuctionsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CheckParcelSalesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CheckParcelSalesPacket", + "signature": "LibreMetaverse.Packets.CheckParcelSalesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor", + "kind": "constructor", + "name": "CheckParcelSalesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CheckParcelSalesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CheckParcelSalesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CheckParcelSalesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CheckParcelSalesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentAlivePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChildAgentAlivePacket", + "signature": "LibreMetaverse.Packets.ChildAgentAlivePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor", + "kind": "constructor", + "name": "ChildAgentAlivePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentAlivePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentAlivePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentAlivePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentAlivePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ViewerCircuitCode", + "kind": "field", + "name": "ViewerCircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentDyingPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChildAgentDyingPacket", + "signature": "LibreMetaverse.Packets.ChildAgentDyingPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor", + "kind": "constructor", + "name": "ChildAgentDyingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentDyingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentDyingPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentDyingPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentDyingPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChildAgentPositionUpdatePacket", + "signature": "LibreMetaverse.Packets.ChildAgentPositionUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor", + "kind": "constructor", + "name": "ChildAgentPositionUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentPositionUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentPositionUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.AgentPos", + "kind": "field", + "name": "AgentPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.AgentVel", + "kind": "field", + "name": "AgentVel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.AtAxis", + "kind": "field", + "name": "AtAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.Center", + "kind": "field", + "name": "Center", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ChangedGrid", + "kind": "field", + "name": "ChangedGrid", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.LeftAxis", + "kind": "field", + "name": "LeftAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.UpAxis", + "kind": "field", + "name": "UpAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ViewerCircuitCode", + "kind": "field", + "name": "ViewerCircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUnknownPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChildAgentUnknownPacket", + "signature": "LibreMetaverse.Packets.ChildAgentUnknownPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor", + "kind": "constructor", + "name": "ChildAgentUnknownPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentUnknownPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentUnknownPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUnknownPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUnknownPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ChildAgentUpdatePacket", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccess", + "kind": "field", + "name": "AgentAccess", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfo", + "kind": "field", + "name": "AgentInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHost", + "kind": "field", + "name": "AgentInventoryHost", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationData", + "kind": "field", + "name": "AnimationData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlock", + "kind": "field", + "name": "GranterBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairData", + "kind": "field", + "name": "NVPairData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParam", + "kind": "field", + "name": "VisualParam", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor", + "kind": "constructor", + "name": "ChildAgentUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ChildAgentUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentAccessBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.AgentLegacyAccess", + "kind": "field", + "name": "AgentLegacyAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.AgentMaxAccess", + "kind": "field", + "name": "AgentMaxAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.#ctor", + "kind": "constructor", + "name": "AgentAccessBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentAccessBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ActiveGroupID", + "kind": "field", + "name": "ActiveGroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentAccess", + "kind": "field", + "name": "AgentAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentPos", + "kind": "field", + "name": "AgentPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentTextures", + "kind": "field", + "name": "AgentTextures", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentVel", + "kind": "field", + "name": "AgentVel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AlwaysRun", + "kind": "field", + "name": "AlwaysRun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Aspect", + "kind": "field", + "name": "Aspect", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AtAxis", + "kind": "field", + "name": "AtAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.BodyRotation", + "kind": "field", + "name": "BodyRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Center", + "kind": "field", + "name": "Center", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ChangedGrid", + "kind": "field", + "name": "ChangedGrid", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ControlFlags", + "kind": "field", + "name": "ControlFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.EnergyLevel", + "kind": "field", + "name": "EnergyLevel", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Far", + "kind": "field", + "name": "Far", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.GodLevel", + "kind": "field", + "name": "GodLevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.HeadRotation", + "kind": "field", + "name": "HeadRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.LeftAxis", + "kind": "field", + "name": "LeftAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.LocomotionState", + "kind": "field", + "name": "LocomotionState", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.PreyAgent", + "kind": "field", + "name": "PreyAgent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Throttles", + "kind": "field", + "name": "Throttles", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.UpAxis", + "kind": "field", + "name": "UpAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ViewerCircuitCode", + "kind": "field", + "name": "ViewerCircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentInfoBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.#ctor", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentInventoryHostBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.InventoryHost", + "kind": "field", + "name": "InventoryHost", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.#ctor", + "kind": "constructor", + "name": "AgentInventoryHostBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentInventoryHostBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AnimationDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.Animation", + "kind": "field", + "name": "Animation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.#ctor", + "kind": "constructor", + "name": "AnimationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AnimationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GranterBlockBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.GranterID", + "kind": "field", + "name": "GranterID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.#ctor", + "kind": "constructor", + "name": "GranterBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GranterBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.GroupPowers", + "kind": "field", + "name": "GroupPowers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NVPairDataBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.NVPairs", + "kind": "field", + "name": "NVPairs", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.#ctor", + "kind": "constructor", + "name": "NVPairDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NVPairDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock", + "namespace": "LibreMetaverse.Packets", + "name": "VisualParamBlock", + "signature": "LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ParamValue", + "kind": "field", + "name": "ParamValue", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.#ctor", + "kind": "constructor", + "name": "VisualParamBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VisualParamBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedDeletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ClassifiedDeletePacket", + "signature": "LibreMetaverse.Packets.ClassifiedDeletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedDeletePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor", + "kind": "constructor", + "name": "ClassifiedDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedGodDeletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ClassifiedGodDeletePacket", + "signature": "LibreMetaverse.Packets.ClassifiedGodDeletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedGodDeletePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor", + "kind": "constructor", + "name": "ClassifiedGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ClassifiedInfoReplyPacket", + "signature": "LibreMetaverse.Packets.ClassifiedInfoReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor", + "kind": "constructor", + "name": "ClassifiedInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ClassifiedFlags", + "kind": "field", + "name": "ClassifiedFlags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ExpirationDate", + "kind": "field", + "name": "ExpirationDate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ParcelName", + "kind": "field", + "name": "ParcelName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ParentEstate", + "kind": "field", + "name": "ParentEstate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.PosGlobal", + "kind": "field", + "name": "PosGlobal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.PriceForListing", + "kind": "field", + "name": "PriceForListing", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ClassifiedInfoRequestPacket", + "signature": "LibreMetaverse.Packets.ClassifiedInfoRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor", + "kind": "constructor", + "name": "ClassifiedInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ClassifiedInfoUpdatePacket", + "signature": "LibreMetaverse.Packets.ClassifiedInfoUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor", + "kind": "constructor", + "name": "ClassifiedInfoUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedInfoUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClassifiedInfoUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ClassifiedFlags", + "kind": "field", + "name": "ClassifiedFlags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ParentEstate", + "kind": "field", + "name": "ParentEstate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.PosGlobal", + "kind": "field", + "name": "PosGlobal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.PriceForListing", + "kind": "field", + "name": "PriceForListing", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ClearFollowCamPropertiesPacket", + "signature": "LibreMetaverse.Packets.ClearFollowCamPropertiesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor", + "kind": "constructor", + "name": "ClearFollowCamPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClearFollowCamPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ClearFollowCamPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CloseCircuitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CloseCircuitPacket", + "signature": "LibreMetaverse.Packets.CloseCircuitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor", + "kind": "constructor", + "name": "CloseCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CloseCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CloseCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CloseCircuitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CloseCircuitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CoarseLocationUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "CoarseLocationUpdatePacket", + "signature": "LibreMetaverse.Packets.CoarseLocationUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.Index", + "kind": "field", + "name": "Index", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.Location", + "kind": "field", + "name": "Location", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor", + "kind": "constructor", + "name": "CoarseLocationUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CoarseLocationUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CoarseLocationUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock", + "namespace": "LibreMetaverse.Packets", + "name": "IndexBlock", + "signature": "LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.Prey", + "kind": "field", + "name": "Prey", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.You", + "kind": "field", + "name": "You", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.#ctor", + "kind": "constructor", + "name": "IndexBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "IndexBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock", + "namespace": "LibreMetaverse.Packets", + "name": "LocationBlock", + "signature": "LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.#ctor", + "kind": "constructor", + "name": "LocationBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LocationBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CompleteAgentMovementPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CompleteAgentMovementPacket", + "signature": "LibreMetaverse.Packets.CompleteAgentMovementPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor", + "kind": "constructor", + "name": "CompleteAgentMovementPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CompleteAgentMovementPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CompleteAgentMovementPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompleteAgentMovementPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompleteAgentMovementPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CompleteAuctionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CompleteAuctionPacket", + "signature": "LibreMetaverse.Packets.CompleteAuctionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor", + "kind": "constructor", + "name": "CompleteAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CompleteAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CompleteAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompleteAuctionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompleteAuctionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CompletePingCheckPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CompletePingCheckPacket", + "signature": "LibreMetaverse.Packets.CompletePingCheckPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CompletePingCheckPacket.PingID", + "kind": "field", + "name": "PingID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor", + "kind": "constructor", + "name": "CompletePingCheckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CompletePingCheckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CompletePingCheckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompletePingCheckPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompletePingCheckPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PingIDBlock", + "signature": "LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.PingID", + "kind": "field", + "name": "PingID", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.#ctor", + "kind": "constructor", + "name": "PingIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PingIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ConfirmAuctionStartPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ConfirmAuctionStartPacket", + "signature": "LibreMetaverse.Packets.ConfirmAuctionStartPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionData", + "kind": "field", + "name": "AuctionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor", + "kind": "constructor", + "name": "ConfirmAuctionStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ConfirmAuctionStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ConfirmAuctionStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmAuctionStartPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmAuctionStartPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AuctionDataBlock", + "signature": "LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.AuctionID", + "kind": "field", + "name": "AuctionID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.#ctor", + "kind": "constructor", + "name": "AuctionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AuctionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ConfirmEnableSimulatorPacket", + "signature": "LibreMetaverse.Packets.ConfirmEnableSimulatorPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor", + "kind": "constructor", + "name": "ConfirmEnableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ConfirmEnableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ConfirmEnableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ConfirmXferPacketPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ConfirmXferPacketPacket", + "signature": "LibreMetaverse.Packets.ConfirmXferPacketPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferID", + "kind": "field", + "name": "XferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor", + "kind": "constructor", + "name": "ConfirmXferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ConfirmXferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ConfirmXferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmXferPacketPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmXferPacketPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "XferIDBlock", + "signature": "LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.Packet", + "kind": "field", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.#ctor", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CopyInventoryFromNotecardPacket", + "signature": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardData", + "kind": "field", + "name": "NotecardData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor", + "kind": "constructor", + "name": "CopyInventoryFromNotecardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CopyInventoryFromNotecardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CopyInventoryFromNotecardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NotecardDataBlock", + "signature": "LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.NotecardItemID", + "kind": "field", + "name": "NotecardItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.#ctor", + "kind": "constructor", + "name": "NotecardDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NotecardDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CopyInventoryItemPacket", + "signature": "LibreMetaverse.Packets.CopyInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "CopyInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CopyInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CopyInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.NewFolderID", + "kind": "field", + "name": "NewFolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.NewName", + "kind": "field", + "name": "NewName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.OldAgentID", + "kind": "field", + "name": "OldAgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.OldItemID", + "kind": "field", + "name": "OldItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateGroupReplyPacket", + "signature": "LibreMetaverse.Packets.CreateGroupReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyData", + "kind": "field", + "name": "ReplyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor", + "kind": "constructor", + "name": "CreateGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReplyDataBlock", + "signature": "LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.#ctor", + "kind": "constructor", + "name": "ReplyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReplyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateGroupRequestExtendedPacket", + "signature": "LibreMetaverse.Packets.CreateGroupRequestExtendedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor", + "kind": "constructor", + "name": "CreateGroupRequestExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateGroupRequestExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateGroupRequestExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.GroupLimit", + "kind": "field", + "name": "GroupLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.Charter", + "kind": "field", + "name": "Charter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.InsigniaID", + "kind": "field", + "name": "InsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.MembershipFee", + "kind": "field", + "name": "MembershipFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.OpenEnrollment", + "kind": "field", + "name": "OpenEnrollment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ShowInList", + "kind": "field", + "name": "ShowInList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateGroupRequestPacket", + "signature": "LibreMetaverse.Packets.CreateGroupRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor", + "kind": "constructor", + "name": "CreateGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.Charter", + "kind": "field", + "name": "Charter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.InsigniaID", + "kind": "field", + "name": "InsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.MembershipFee", + "kind": "field", + "name": "MembershipFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.OpenEnrollment", + "kind": "field", + "name": "OpenEnrollment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ShowInList", + "kind": "field", + "name": "ShowInList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateInventoryFolderPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateInventoryFolderPacket", + "signature": "LibreMetaverse.Packets.CreateInventoryFolderPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor", + "kind": "constructor", + "name": "CreateInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateInventoryItemPacket", + "signature": "LibreMetaverse.Packets.CreateInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlock", + "kind": "field", + "name": "InventoryBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "CreateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryBlockBlock", + "signature": "LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.WearableType", + "kind": "field", + "name": "WearableType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.#ctor", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateLandmarkForEventPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateLandmarkForEventPacket", + "signature": "LibreMetaverse.Packets.CreateLandmarkForEventPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlock", + "kind": "field", + "name": "InventoryBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor", + "kind": "constructor", + "name": "CreateLandmarkForEventPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateLandmarkForEventPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateLandmarkForEventPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryBlockBlock", + "signature": "LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.#ctor", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateNewOutfitAttachmentsPacket", + "signature": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderData", + "kind": "field", + "name": "HeaderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor", + "kind": "constructor", + "name": "CreateNewOutfitAttachmentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateNewOutfitAttachmentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateNewOutfitAttachmentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HeaderDataBlock", + "signature": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.NewFolderID", + "kind": "field", + "name": "NewFolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.#ctor", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.OldFolderID", + "kind": "field", + "name": "OldFolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.OldItemID", + "kind": "field", + "name": "OldItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateTrustedCircuitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CreateTrustedCircuitPacket", + "signature": "LibreMetaverse.Packets.CreateTrustedCircuitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor", + "kind": "constructor", + "name": "CreateTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CreateTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateTrustedCircuitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateTrustedCircuitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.Digest", + "kind": "field", + "name": "Digest", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.EndPointID", + "kind": "field", + "name": "EndPointID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CrossedRegionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "CrossedRegionPacket", + "signature": "LibreMetaverse.Packets.CrossedRegionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor", + "kind": "constructor", + "name": "CrossedRegionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CrossedRegionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CrossedRegionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.SeedCapability", + "kind": "field", + "name": "SeedCapability", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.SimIP", + "kind": "field", + "name": "SimIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.SimPort", + "kind": "field", + "name": "SimPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataHomeLocationReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DataHomeLocationReplyPacket", + "signature": "LibreMetaverse.Packets.DataHomeLocationReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationReplyPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor", + "kind": "constructor", + "name": "DataHomeLocationReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataHomeLocationReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataHomeLocationReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataHomeLocationRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DataHomeLocationRequestPacket", + "signature": "LibreMetaverse.Packets.DataHomeLocationRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfo", + "kind": "field", + "name": "AgentInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor", + "kind": "constructor", + "name": "DataHomeLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataHomeLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataHomeLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentInfoBlock", + "signature": "LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.AgentEffectiveMaturity", + "kind": "field", + "name": "AgentEffectiveMaturity", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.#ctor", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.KickedFromEstateID", + "kind": "field", + "name": "KickedFromEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataServerLogoutPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DataServerLogoutPacket", + "signature": "LibreMetaverse.Packets.DataServerLogoutPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserData", + "kind": "field", + "name": "UserData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor", + "kind": "constructor", + "name": "DataServerLogoutPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataServerLogoutPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataServerLogoutPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataServerLogoutPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataServerLogoutPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UserDataBlock", + "signature": "LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.Disconnect", + "kind": "field", + "name": "Disconnect", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ViewerIP", + "kind": "field", + "name": "ViewerIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.#ctor", + "kind": "constructor", + "name": "UserDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeRezAckPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DeRezAckPacket", + "signature": "LibreMetaverse.Packets.DeRezAckPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeRezAckPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor", + "kind": "constructor", + "name": "DeRezAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeRezAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeRezAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezAckPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezAckPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeRezObjectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DeRezObjectPacket", + "signature": "LibreMetaverse.Packets.DeRezObjectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlock", + "kind": "field", + "name": "AgentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor", + "kind": "constructor", + "name": "DeRezObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeRezObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeRezObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentBlockBlock", + "signature": "LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.Destination", + "kind": "field", + "name": "Destination", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.DestinationID", + "kind": "field", + "name": "DestinationID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.PacketCount", + "kind": "field", + "name": "PacketCount", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.PacketNumber", + "kind": "field", + "name": "PacketNumber", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.#ctor", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeactivateGesturesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DeactivateGesturesPacket", + "signature": "LibreMetaverse.Packets.DeactivateGesturesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor", + "kind": "constructor", + "name": "DeactivateGesturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeactivateGesturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeactivateGesturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.GestureFlags", + "kind": "field", + "name": "GestureFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeclineCallingCardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DeclineCallingCardPacket", + "signature": "LibreMetaverse.Packets.DeclineCallingCardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlock", + "kind": "field", + "name": "TransactionBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor", + "kind": "constructor", + "name": "DeclineCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeclineCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeclineCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionBlockBlock", + "signature": "LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.#ctor", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeclineFriendshipPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DeclineFriendshipPacket", + "signature": "LibreMetaverse.Packets.DeclineFriendshipPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlock", + "kind": "field", + "name": "TransactionBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor", + "kind": "constructor", + "name": "DeclineFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeclineFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DeclineFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionBlockBlock", + "signature": "LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.#ctor", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DenyTrustedCircuitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DenyTrustedCircuitPacket", + "signature": "LibreMetaverse.Packets.DenyTrustedCircuitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor", + "kind": "constructor", + "name": "DenyTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DenyTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DenyTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DenyTrustedCircuitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DenyTrustedCircuitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.EndPointID", + "kind": "field", + "name": "EndPointID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DerezContainerPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DerezContainerPacket", + "signature": "LibreMetaverse.Packets.DerezContainerPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DerezContainerPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DerezContainerPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor", + "kind": "constructor", + "name": "DerezContainerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DerezContainerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DerezContainerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DerezContainerPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DerezContainerPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DerezContainerPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.DerezContainerPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.Delete", + "kind": "field", + "name": "Delete", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DetachAttachmentIntoInvPacket", + "signature": "LibreMetaverse.Packets.DetachAttachmentIntoInvPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor", + "kind": "constructor", + "name": "DetachAttachmentIntoInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DetachAttachmentIntoInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DetachAttachmentIntoInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirClassifiedQueryBackendPacket", + "signature": "LibreMetaverse.Packets.DirClassifiedQueryBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor", + "kind": "constructor", + "name": "DirClassifiedQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirClassifiedQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirClassifiedQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedQueryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirClassifiedQueryPacket", + "signature": "LibreMetaverse.Packets.DirClassifiedQueryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor", + "kind": "constructor", + "name": "DirClassifiedQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirClassifiedQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirClassifiedQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirClassifiedReplyPacket", + "signature": "LibreMetaverse.Packets.DirClassifiedReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusData", + "kind": "field", + "name": "StatusData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor", + "kind": "constructor", + "name": "DirClassifiedReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirClassifiedReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirClassifiedReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ClassifiedFlags", + "kind": "field", + "name": "ClassifiedFlags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ClassifiedID", + "kind": "field", + "name": "ClassifiedID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ExpirationDate", + "kind": "field", + "name": "ExpirationDate", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.PriceForListing", + "kind": "field", + "name": "PriceForListing", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "StatusDataBlock", + "signature": "LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.#ctor", + "kind": "constructor", + "name": "StatusDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StatusDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirEventsReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirEventsReplyPacket", + "signature": "LibreMetaverse.Packets.DirEventsReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.StatusData", + "kind": "field", + "name": "StatusData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor", + "kind": "constructor", + "name": "DirEventsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirEventsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirEventsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.Date", + "kind": "field", + "name": "Date", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.EventFlags", + "kind": "field", + "name": "EventFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.UnixTime", + "kind": "field", + "name": "UnixTime", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "StatusDataBlock", + "signature": "LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.#ctor", + "kind": "constructor", + "name": "StatusDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StatusDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirFindQueryBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirFindQueryBackendPacket", + "signature": "LibreMetaverse.Packets.DirFindQueryBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor", + "kind": "constructor", + "name": "DirFindQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirFindQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirFindQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirFindQueryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirFindQueryPacket", + "signature": "LibreMetaverse.Packets.DirFindQueryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor", + "kind": "constructor", + "name": "DirFindQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirFindQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirFindQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirGroupsReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirGroupsReplyPacket", + "signature": "LibreMetaverse.Packets.DirGroupsReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor", + "kind": "constructor", + "name": "DirGroupsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirGroupsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirGroupsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.Members", + "kind": "field", + "name": "Members", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.SearchOrder", + "kind": "field", + "name": "SearchOrder", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandQueryBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirLandQueryBackendPacket", + "signature": "LibreMetaverse.Packets.DirLandQueryBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor", + "kind": "constructor", + "name": "DirLandQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirLandQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirLandQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Area", + "kind": "field", + "name": "Area", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.SearchType", + "kind": "field", + "name": "SearchType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandQueryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirLandQueryPacket", + "signature": "LibreMetaverse.Packets.DirLandQueryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor", + "kind": "constructor", + "name": "DirLandQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirLandQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirLandQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.Area", + "kind": "field", + "name": "Area", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.SearchType", + "kind": "field", + "name": "SearchType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirLandReplyPacket", + "signature": "LibreMetaverse.Packets.DirLandReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor", + "kind": "constructor", + "name": "DirLandReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirLandReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirLandReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.Auction", + "kind": "field", + "name": "Auction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ForSale", + "kind": "field", + "name": "ForSale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPeopleReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPeopleReplyPacket", + "signature": "LibreMetaverse.Packets.DirPeopleReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor", + "kind": "constructor", + "name": "DirPeopleReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPeopleReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPeopleReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Group", + "kind": "field", + "name": "Group", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Online", + "kind": "field", + "name": "Online", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Reputation", + "kind": "field", + "name": "Reputation", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesQueryBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPlacesQueryBackendPacket", + "signature": "LibreMetaverse.Packets.DirPlacesQueryBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor", + "kind": "constructor", + "name": "DirPlacesQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPlacesQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPlacesQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesQueryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPlacesQueryPacket", + "signature": "LibreMetaverse.Packets.DirPlacesQueryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor", + "kind": "constructor", + "name": "DirPlacesQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPlacesQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPlacesQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPlacesReplyPacket", + "signature": "LibreMetaverse.Packets.DirPlacesReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusData", + "kind": "field", + "name": "StatusData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor", + "kind": "constructor", + "name": "DirPlacesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPlacesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPlacesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Auction", + "kind": "field", + "name": "Auction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ForSale", + "kind": "field", + "name": "ForSale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "StatusDataBlock", + "signature": "LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.#ctor", + "kind": "constructor", + "name": "StatusDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StatusDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularQueryBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPopularQueryBackendPacket", + "signature": "LibreMetaverse.Packets.DirPopularQueryBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor", + "kind": "constructor", + "name": "DirPopularQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPopularQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPopularQueryBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularQueryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPopularQueryPacket", + "signature": "LibreMetaverse.Packets.DirPopularQueryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor", + "kind": "constructor", + "name": "DirPopularQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPopularQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPopularQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DirPopularReplyPacket", + "signature": "LibreMetaverse.Packets.DirPopularReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryReplies", + "kind": "field", + "name": "QueryReplies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor", + "kind": "constructor", + "name": "DirPopularReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPopularReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DirPopularReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryRepliesBlock", + "signature": "LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.#ctor", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryRepliesBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.DisableSimulatorPacket", + "namespace": "LibreMetaverse.Packets", + "name": "DisableSimulatorPacket", + "signature": "LibreMetaverse.Packets.DisableSimulatorPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor", + "kind": "constructor", + "name": "DisableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DisableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DisableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DisableSimulatorPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.DisableSimulatorPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EconomyDataPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EconomyDataPacket", + "signature": "LibreMetaverse.Packets.EconomyDataPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EconomyDataPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor", + "kind": "constructor", + "name": "EconomyDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EconomyDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EconomyDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EconomyDataPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EconomyDataPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.EconomyDataPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.EnergyEfficiency", + "kind": "field", + "name": "EnergyEfficiency", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ObjectCapacity", + "kind": "field", + "name": "ObjectCapacity", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ObjectCount", + "kind": "field", + "name": "ObjectCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceEnergyUnit", + "kind": "field", + "name": "PriceEnergyUnit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceGroupCreate", + "kind": "field", + "name": "PriceGroupCreate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceObjectClaim", + "kind": "field", + "name": "PriceObjectClaim", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceObjectRent", + "kind": "field", + "name": "PriceObjectRent", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceObjectScaleFactor", + "kind": "field", + "name": "PriceObjectScaleFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceParcelClaim", + "kind": "field", + "name": "PriceParcelClaim", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceParcelClaimFactor", + "kind": "field", + "name": "PriceParcelClaimFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceParcelRent", + "kind": "field", + "name": "PriceParcelRent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PricePublicObjectDecay", + "kind": "field", + "name": "PricePublicObjectDecay", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PricePublicObjectDelete", + "kind": "field", + "name": "PricePublicObjectDelete", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceRentLight", + "kind": "field", + "name": "PriceRentLight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceUpload", + "kind": "field", + "name": "PriceUpload", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.TeleportMinPrice", + "kind": "field", + "name": "TeleportMinPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.TeleportPriceExponent", + "kind": "field", + "name": "TeleportPriceExponent", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EconomyDataRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EconomyDataRequestPacket", + "signature": "LibreMetaverse.Packets.EconomyDataRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor", + "kind": "constructor", + "name": "EconomyDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EconomyDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EconomyDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EconomyDataRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EconomyDataRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EdgeDataPacketPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EdgeDataPacketPacket", + "signature": "LibreMetaverse.Packets.EdgeDataPacketPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeData", + "kind": "field", + "name": "EdgeData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor", + "kind": "constructor", + "name": "EdgeDataPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EdgeDataPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EdgeDataPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EdgeDataPacketPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EdgeDataPacketPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EdgeDataBlock", + "signature": "LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.Direction", + "kind": "field", + "name": "Direction", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.LayerData", + "kind": "field", + "name": "LayerData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.LayerType", + "kind": "field", + "name": "LayerType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.#ctor", + "kind": "constructor", + "name": "EdgeDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EdgeDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EjectGroupMemberReplyPacket", + "signature": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectData", + "kind": "field", + "name": "EjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor", + "kind": "constructor", + "name": "EjectGroupMemberReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectGroupMemberReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectGroupMemberReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EjectDataBlock", + "signature": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.#ctor", + "kind": "constructor", + "name": "EjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EjectGroupMemberRequestPacket", + "signature": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectData", + "kind": "field", + "name": "EjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor", + "kind": "constructor", + "name": "EjectGroupMemberRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectGroupMemberRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectGroupMemberRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EjectDataBlock", + "signature": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.EjecteeID", + "kind": "field", + "name": "EjecteeID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.#ctor", + "kind": "constructor", + "name": "EjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectUserPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EjectUserPacket", + "signature": "LibreMetaverse.Packets.EjectUserPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EjectUserPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor", + "kind": "constructor", + "name": "EjectUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EjectUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EjectUserPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.EjectUserPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.DataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EmailMessageReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EmailMessageReplyPacket", + "signature": "LibreMetaverse.Packets.EmailMessageReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor", + "kind": "constructor", + "name": "EmailMessageReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EmailMessageReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EmailMessageReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EmailMessageReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EmailMessageReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromAddress", + "kind": "field", + "name": "FromAddress", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.MailFilter", + "kind": "field", + "name": "MailFilter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.More", + "kind": "field", + "name": "More", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EmailMessageRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EmailMessageRequestPacket", + "signature": "LibreMetaverse.Packets.EmailMessageRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor", + "kind": "constructor", + "name": "EmailMessageRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EmailMessageRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EmailMessageRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EmailMessageRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EmailMessageRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromAddress", + "kind": "field", + "name": "FromAddress", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EnableSimulatorPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EnableSimulatorPacket", + "signature": "LibreMetaverse.Packets.EnableSimulatorPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfo", + "kind": "field", + "name": "SimulatorInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor", + "kind": "constructor", + "name": "EnableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EnableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EnableSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EnableSimulatorPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EnableSimulatorPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorInfoBlock", + "signature": "LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.Handle", + "kind": "field", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.#ctor", + "kind": "constructor", + "name": "SimulatorInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ErrorPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ErrorPacket", + "signature": "LibreMetaverse.Packets.ErrorPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ErrorPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ErrorPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor", + "kind": "constructor", + "name": "ErrorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ErrorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ErrorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ErrorPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ErrorPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ErrorPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ErrorPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ErrorPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Code", + "kind": "field", + "name": "Code", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.System", + "kind": "field", + "name": "System", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Token", + "kind": "field", + "name": "Token", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ErrorPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateCovenantReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EstateCovenantReplyPacket", + "signature": "LibreMetaverse.Packets.EstateCovenantReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor", + "kind": "constructor", + "name": "EstateCovenantReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateCovenantReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateCovenantReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateCovenantReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateCovenantReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.CovenantID", + "kind": "field", + "name": "CovenantID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.CovenantTimestamp", + "kind": "field", + "name": "CovenantTimestamp", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.EstateName", + "kind": "field", + "name": "EstateName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.EstateOwnerID", + "kind": "field", + "name": "EstateOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateCovenantRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EstateCovenantRequestPacket", + "signature": "LibreMetaverse.Packets.EstateCovenantRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor", + "kind": "constructor", + "name": "EstateCovenantRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateCovenantRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateCovenantRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateCovenantRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateCovenantRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateOwnerMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "EstateOwnerMessagePacket", + "signature": "LibreMetaverse.Packets.EstateOwnerMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodData", + "kind": "field", + "name": "MethodData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamList", + "kind": "field", + "name": "ParamList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor", + "kind": "constructor", + "name": "EstateOwnerMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateOwnerMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateOwnerMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MethodDataBlock", + "signature": "LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.Invoice", + "kind": "field", + "name": "Invoice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.#ctor", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParamListBlock", + "signature": "LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.Parameter", + "kind": "field", + "name": "Parameter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.#ctor", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventGodDeletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventGodDeletePacket", + "signature": "LibreMetaverse.Packets.EventGodDeletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor", + "kind": "constructor", + "name": "EventGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryStart", + "kind": "field", + "name": "QueryStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventInfoReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventInfoReplyPacket", + "signature": "LibreMetaverse.Packets.EventInfoReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor", + "kind": "constructor", + "name": "EventInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Cover", + "kind": "field", + "name": "Cover", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Creator", + "kind": "field", + "name": "Creator", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Date", + "kind": "field", + "name": "Date", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.DateUTC", + "kind": "field", + "name": "DateUTC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.EventFlags", + "kind": "field", + "name": "EventFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.GlobalPos", + "kind": "field", + "name": "GlobalPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventInfoRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventInfoRequestPacket", + "signature": "LibreMetaverse.Packets.EventInfoRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoRequestPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor", + "kind": "constructor", + "name": "EventInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventLocationReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventLocationReplyPacket", + "signature": "LibreMetaverse.Packets.EventLocationReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor", + "kind": "constructor", + "name": "EventLocationReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventLocationReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventLocationReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.RegionPos", + "kind": "field", + "name": "RegionPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventLocationRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventLocationRequestPacket", + "signature": "LibreMetaverse.Packets.EventLocationRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationRequestPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationRequestPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor", + "kind": "constructor", + "name": "EventLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventNotificationAddRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventNotificationAddRequestPacket", + "signature": "LibreMetaverse.Packets.EventNotificationAddRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor", + "kind": "constructor", + "name": "EventNotificationAddRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventNotificationAddRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventNotificationAddRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "EventNotificationRemoveRequestPacket", + "signature": "LibreMetaverse.Packets.EventNotificationRemoveRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventData", + "kind": "field", + "name": "EventData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor", + "kind": "constructor", + "name": "EventNotificationRemoveRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventNotificationRemoveRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventNotificationRemoveRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EventDataBlock", + "signature": "LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.EventID", + "kind": "field", + "name": "EventID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.#ctor", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EventDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FeatureDisabledPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FeatureDisabledPacket", + "signature": "LibreMetaverse.Packets.FeatureDisabledPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfo", + "kind": "field", + "name": "FailureInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor", + "kind": "constructor", + "name": "FeatureDisabledPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FeatureDisabledPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FeatureDisabledPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FeatureDisabledPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FeatureDisabledPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FailureInfoBlock", + "signature": "LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ErrorMessage", + "kind": "field", + "name": "ErrorMessage", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.#ctor", + "kind": "constructor", + "name": "FailureInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FailureInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryDescendentsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FetchInventoryDescendentsPacket", + "signature": "LibreMetaverse.Packets.FetchInventoryDescendentsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor", + "kind": "constructor", + "name": "FetchInventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FetchInventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FetchInventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FetchFolders", + "kind": "field", + "name": "FetchFolders", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FetchItems", + "kind": "field", + "name": "FetchItems", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.SortOrder", + "kind": "field", + "name": "SortOrder", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FetchInventoryPacket", + "signature": "LibreMetaverse.Packets.FetchInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor", + "kind": "constructor", + "name": "FetchInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FetchInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FetchInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FetchInventoryReplyPacket", + "signature": "LibreMetaverse.Packets.FetchInventoryReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor", + "kind": "constructor", + "name": "FetchInventoryReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FetchInventoryReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FetchInventoryReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FindAgentPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FindAgentPacket", + "signature": "LibreMetaverse.Packets.FindAgentPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.AgentBlock", + "kind": "field", + "name": "AgentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.LocationBlock", + "kind": "field", + "name": "LocationBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor", + "kind": "constructor", + "name": "FindAgentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FindAgentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FindAgentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentBlockBlock", + "signature": "LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.Hunter", + "kind": "field", + "name": "Hunter", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.Prey", + "kind": "field", + "name": "Prey", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.SpaceIP", + "kind": "field", + "name": "SpaceIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.#ctor", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "LocationBlockBlock", + "signature": "LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.#ctor", + "kind": "constructor", + "name": "LocationBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LocationBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ForceObjectSelectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ForceObjectSelectPacket", + "signature": "LibreMetaverse.Packets.ForceObjectSelectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ForceObjectSelectPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ForceObjectSelectPacket._Header", + "kind": "field", + "name": "_Header", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor", + "kind": "constructor", + "name": "ForceObjectSelectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ForceObjectSelectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ForceObjectSelectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HeaderBlock", + "signature": "LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ResetList", + "kind": "field", + "name": "ResetList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.#ctor", + "kind": "constructor", + "name": "HeaderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HeaderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ForceScriptControlReleasePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ForceScriptControlReleasePacket", + "signature": "LibreMetaverse.Packets.ForceScriptControlReleasePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor", + "kind": "constructor", + "name": "ForceScriptControlReleasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ForceScriptControlReleasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ForceScriptControlReleasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceScriptControlReleasePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceScriptControlReleasePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FormFriendshipPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FormFriendshipPacket", + "signature": "LibreMetaverse.Packets.FormFriendshipPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlock", + "kind": "field", + "name": "AgentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor", + "kind": "constructor", + "name": "FormFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FormFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FormFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FormFriendshipPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FormFriendshipPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentBlockBlock", + "signature": "LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.#ctor", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FreezeUserPacket", + "namespace": "LibreMetaverse.Packets", + "name": "FreezeUserPacket", + "signature": "LibreMetaverse.Packets.FreezeUserPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.FreezeUserPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor", + "kind": "constructor", + "name": "FreezeUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FreezeUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FreezeUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.FreezeUserPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.FreezeUserPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GameControlInputPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GameControlInputPacket", + "signature": "LibreMetaverse.Packets.GameControlInputPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AxisData", + "kind": "field", + "name": "AxisData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.ButtonData", + "kind": "field", + "name": "ButtonData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor", + "kind": "constructor", + "name": "GameControlInputPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GameControlInputPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GameControlInputPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AxisDataBlock", + "signature": "LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.Index", + "kind": "field", + "name": "Index", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.#ctor", + "kind": "constructor", + "name": "AxisDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AxisDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ButtonDataBlock", + "signature": "LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.#ctor", + "kind": "constructor", + "name": "ButtonDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ButtonDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "GenericMessagePacket", + "signature": "LibreMetaverse.Packets.GenericMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.MethodData", + "kind": "field", + "name": "MethodData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.ParamList", + "kind": "field", + "name": "ParamList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor", + "kind": "constructor", + "name": "GenericMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GenericMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GenericMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MethodDataBlock", + "signature": "LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.Invoice", + "kind": "field", + "name": "Invoice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.#ctor", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParamListBlock", + "signature": "LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.Parameter", + "kind": "field", + "name": "Parameter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.#ctor", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericStreamingMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "GenericStreamingMessagePacket", + "signature": "LibreMetaverse.Packets.GenericStreamingMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodData", + "kind": "field", + "name": "MethodData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor", + "kind": "constructor", + "name": "GenericStreamingMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GenericStreamingMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GenericStreamingMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MethodDataBlock", + "signature": "LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.#ctor", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GetScriptRunningPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GetScriptRunningPacket", + "signature": "LibreMetaverse.Packets.GetScriptRunningPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GetScriptRunningPacket.Script", + "kind": "field", + "name": "Script", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor", + "kind": "constructor", + "name": "GetScriptRunningPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GetScriptRunningPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GetScriptRunningPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GetScriptRunningPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GetScriptRunningPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptBlock", + "signature": "LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.#ctor", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodKickUserPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GodKickUserPacket", + "signature": "LibreMetaverse.Packets.GodKickUserPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfo", + "kind": "field", + "name": "UserInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor", + "kind": "constructor", + "name": "GodKickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GodKickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GodKickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodKickUserPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodKickUserPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UserInfoBlock", + "signature": "LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.GodID", + "kind": "field", + "name": "GodID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.GodSessionID", + "kind": "field", + "name": "GodSessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.KickFlags", + "kind": "field", + "name": "KickFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.#ctor", + "kind": "constructor", + "name": "UserInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodUpdateRegionInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GodUpdateRegionInfoPacket", + "signature": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo", + "kind": "field", + "name": "RegionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2", + "kind": "field", + "name": "RegionInfo2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor", + "kind": "constructor", + "name": "GodUpdateRegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GodUpdateRegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GodUpdateRegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo2Block", + "signature": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.RegionFlagsExtended", + "kind": "field", + "name": "RegionFlagsExtended", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.#ctor", + "kind": "constructor", + "name": "RegionInfo2Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo2Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfoBlock", + "signature": "LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.BillableFactor", + "kind": "field", + "name": "BillableFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.PricePerMeter", + "kind": "field", + "name": "PricePerMeter", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.RedirectGridX", + "kind": "field", + "name": "RedirectGridX", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.RedirectGridY", + "kind": "field", + "name": "RedirectGridY", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.#ctor", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodlikeMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "GodlikeMessagePacket", + "signature": "LibreMetaverse.Packets.GodlikeMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.MethodData", + "kind": "field", + "name": "MethodData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.ParamList", + "kind": "field", + "name": "ParamList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor", + "kind": "constructor", + "name": "GodlikeMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GodlikeMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GodlikeMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MethodDataBlock", + "signature": "LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.Invoice", + "kind": "field", + "name": "Invoice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.#ctor", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParamListBlock", + "signature": "LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.Parameter", + "kind": "field", + "name": "Parameter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.#ctor", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GrantGodlikePowersPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GrantGodlikePowersPacket", + "signature": "LibreMetaverse.Packets.GrantGodlikePowersPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantData", + "kind": "field", + "name": "GrantData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor", + "kind": "constructor", + "name": "GrantGodlikePowersPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GrantGodlikePowersPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GrantGodlikePowersPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GrantDataBlock", + "signature": "LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.GodLevel", + "kind": "field", + "name": "GodLevel", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.Token", + "kind": "field", + "name": "Token", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.#ctor", + "kind": "constructor", + "name": "GrantDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GrantDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GrantUserRightsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GrantUserRightsPacket", + "signature": "LibreMetaverse.Packets.GrantUserRightsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.Rights", + "kind": "field", + "name": "Rights", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor", + "kind": "constructor", + "name": "GrantUserRightsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GrantUserRightsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GrantUserRightsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RightsBlock", + "signature": "LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.AgentRelated", + "kind": "field", + "name": "AgentRelated", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.RelatedRights", + "kind": "field", + "name": "RelatedRights", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.#ctor", + "kind": "constructor", + "name": "RightsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RightsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupAccountDetailsReplyPacket", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryData", + "kind": "field", + "name": "HistoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupAccountDetailsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountDetailsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountDetailsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HistoryDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.#ctor", + "kind": "constructor", + "name": "HistoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HistoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.StartDate", + "kind": "field", + "name": "StartDate", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupAccountDetailsRequestPacket", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupAccountDetailsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountDetailsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountDetailsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupAccountSummaryReplyPacket", + "signature": "LibreMetaverse.Packets.GroupAccountSummaryReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupAccountSummaryReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountSummaryReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountSummaryReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.Balance", + "kind": "field", + "name": "Balance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.GroupTaxCurrent", + "kind": "field", + "name": "GroupTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.GroupTaxEstimate", + "kind": "field", + "name": "GroupTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LandTaxCurrent", + "kind": "field", + "name": "LandTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LandTaxEstimate", + "kind": "field", + "name": "LandTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LastTaxDate", + "kind": "field", + "name": "LastTaxDate", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LightTaxCurrent", + "kind": "field", + "name": "LightTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LightTaxEstimate", + "kind": "field", + "name": "LightTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.NonExemptMembers", + "kind": "field", + "name": "NonExemptMembers", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ObjectTaxCurrent", + "kind": "field", + "name": "ObjectTaxCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ObjectTaxEstimate", + "kind": "field", + "name": "ObjectTaxEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ParcelDirFeeCurrent", + "kind": "field", + "name": "ParcelDirFeeCurrent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ParcelDirFeeEstimate", + "kind": "field", + "name": "ParcelDirFeeEstimate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.StartDate", + "kind": "field", + "name": "StartDate", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.TaxDate", + "kind": "field", + "name": "TaxDate", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.TotalCredits", + "kind": "field", + "name": "TotalCredits", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.TotalDebits", + "kind": "field", + "name": "TotalDebits", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupAccountSummaryRequestPacket", + "signature": "LibreMetaverse.Packets.GroupAccountSummaryRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupAccountSummaryRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountSummaryRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountSummaryRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupAccountTransactionsReplyPacket", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryData", + "kind": "field", + "name": "HistoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupAccountTransactionsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountTransactionsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountTransactionsReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HistoryDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Item", + "kind": "field", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.User", + "kind": "field", + "name": "User", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.#ctor", + "kind": "constructor", + "name": "HistoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HistoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.StartDate", + "kind": "field", + "name": "StartDate", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupAccountTransactionsRequestPacket", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupAccountTransactionsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountTransactionsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupAccountTransactionsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.CurrentInterval", + "kind": "field", + "name": "CurrentInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.IntervalDays", + "kind": "field", + "name": "IntervalDays", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupActiveProposalItemReplyPacket", + "signature": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalData", + "kind": "field", + "name": "ProposalData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupActiveProposalItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupActiveProposalItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupActiveProposalItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ProposalDataBlock", + "signature": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.AlreadyVoted", + "kind": "field", + "name": "AlreadyVoted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.EndDateTime", + "kind": "field", + "name": "EndDateTime", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.Majority", + "kind": "field", + "name": "Majority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ProposalText", + "kind": "field", + "name": "ProposalText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.Quorum", + "kind": "field", + "name": "Quorum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.StartDateTime", + "kind": "field", + "name": "StartDateTime", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.TerseDateID", + "kind": "field", + "name": "TerseDateID", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.VoteCast", + "kind": "field", + "name": "VoteCast", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.VoteID", + "kind": "field", + "name": "VoteID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.VoteInitiator", + "kind": "field", + "name": "VoteInitiator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.#ctor", + "kind": "constructor", + "name": "ProposalDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ProposalDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.TotalNumItems", + "kind": "field", + "name": "TotalNumItems", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupActiveProposalsRequestPacket", + "signature": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupActiveProposalsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupActiveProposalsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupActiveProposalsRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupDataUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataUpdatePacket", + "signature": "LibreMetaverse.Packets.GroupDataUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupData", + "kind": "field", + "name": "AgentGroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor", + "kind": "constructor", + "name": "GroupDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupDataUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupDataUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentGroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.AgentPowers", + "kind": "field", + "name": "AgentPowers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.GroupTitle", + "kind": "field", + "name": "GroupTitle", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.#ctor", + "kind": "constructor", + "name": "AgentGroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentGroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupMembersReplyPacket", + "signature": "LibreMetaverse.Packets.GroupMembersReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberData", + "kind": "field", + "name": "MemberData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupMembersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupMembersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupMembersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.MemberCount", + "kind": "field", + "name": "MemberCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MemberDataBlock", + "signature": "LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.AgentPowers", + "kind": "field", + "name": "AgentPowers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.Contribution", + "kind": "field", + "name": "Contribution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.IsOwner", + "kind": "field", + "name": "IsOwner", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.OnlineStatus", + "kind": "field", + "name": "OnlineStatus", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.#ctor", + "kind": "constructor", + "name": "MemberDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MemberDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupMembersRequestPacket", + "signature": "LibreMetaverse.Packets.GroupMembersRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupMembersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupMembersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupMembersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticeAddPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupNoticeAddPacket", + "signature": "LibreMetaverse.Packets.GroupNoticeAddPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlock", + "kind": "field", + "name": "MessageBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor", + "kind": "constructor", + "name": "GroupNoticeAddPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticeAddPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticeAddPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MessageBlockBlock", + "signature": "LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.BinaryBucket", + "kind": "field", + "name": "BinaryBucket", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.Dialog", + "kind": "field", + "name": "Dialog", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromAgentName", + "kind": "field", + "name": "FromAgentName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ToGroupID", + "kind": "field", + "name": "ToGroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.#ctor", + "kind": "constructor", + "name": "MessageBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MessageBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticeRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupNoticeRequestPacket", + "signature": "LibreMetaverse.Packets.GroupNoticeRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupNoticeRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticeRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticeRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.GroupNoticeID", + "kind": "field", + "name": "GroupNoticeID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticesListReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupNoticesListReplyPacket", + "signature": "LibreMetaverse.Packets.GroupNoticesListReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupNoticesListReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticesListReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticesListReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.AssetType", + "kind": "field", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromName", + "kind": "field", + "name": "FromName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.HasAttachment", + "kind": "field", + "name": "HasAttachment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.NoticeID", + "kind": "field", + "name": "NoticeID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.Timestamp", + "kind": "field", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticesListRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupNoticesListRequestPacket", + "signature": "LibreMetaverse.Packets.GroupNoticesListRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupNoticesListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticesListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupNoticesListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProfileReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupProfileReplyPacket", + "signature": "LibreMetaverse.Packets.GroupProfileReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupProfileReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupProfileReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupProfileReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Charter", + "kind": "field", + "name": "Charter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FounderID", + "kind": "field", + "name": "FounderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.GroupMembershipCount", + "kind": "field", + "name": "GroupMembershipCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.GroupRolesCount", + "kind": "field", + "name": "GroupRolesCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.InsigniaID", + "kind": "field", + "name": "InsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.MemberTitle", + "kind": "field", + "name": "MemberTitle", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.MembershipFee", + "kind": "field", + "name": "MembershipFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Money", + "kind": "field", + "name": "Money", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.OpenEnrollment", + "kind": "field", + "name": "OpenEnrollment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.OwnerRole", + "kind": "field", + "name": "OwnerRole", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.PowersMask", + "kind": "field", + "name": "PowersMask", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ShowInList", + "kind": "field", + "name": "ShowInList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProfileRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupProfileRequestPacket", + "signature": "LibreMetaverse.Packets.GroupProfileRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupProfileRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupProfileRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupProfileRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProposalBallotPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupProposalBallotPacket", + "signature": "LibreMetaverse.Packets.GroupProposalBallotPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalData", + "kind": "field", + "name": "ProposalData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor", + "kind": "constructor", + "name": "GroupProposalBallotPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupProposalBallotPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupProposalBallotPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ProposalDataBlock", + "signature": "LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.ProposalID", + "kind": "field", + "name": "ProposalID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.VoteCast", + "kind": "field", + "name": "VoteCast", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.#ctor", + "kind": "constructor", + "name": "ProposalDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ProposalDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleChangesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupRoleChangesPacket", + "signature": "LibreMetaverse.Packets.GroupRoleChangesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChange", + "kind": "field", + "name": "RoleChange", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor", + "kind": "constructor", + "name": "GroupRoleChangesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleChangesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleChangesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RoleChangeBlock", + "signature": "LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.Change", + "kind": "field", + "name": "Change", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.MemberID", + "kind": "field", + "name": "MemberID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.#ctor", + "kind": "constructor", + "name": "RoleChangeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RoleChangeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupRoleDataReplyPacket", + "signature": "LibreMetaverse.Packets.GroupRoleDataReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleData", + "kind": "field", + "name": "RoleData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupRoleDataReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleDataReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleDataReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.RoleCount", + "kind": "field", + "name": "RoleCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RoleDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Members", + "kind": "field", + "name": "Members", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Powers", + "kind": "field", + "name": "Powers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.#ctor", + "kind": "constructor", + "name": "RoleDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RoleDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupRoleDataRequestPacket", + "signature": "LibreMetaverse.Packets.GroupRoleDataRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupRoleDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleMembersReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupRoleMembersReplyPacket", + "signature": "LibreMetaverse.Packets.GroupRoleMembersReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberData", + "kind": "field", + "name": "MemberData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupRoleMembersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleMembersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleMembersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.TotalPairs", + "kind": "field", + "name": "TotalPairs", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MemberDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.MemberID", + "kind": "field", + "name": "MemberID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.#ctor", + "kind": "constructor", + "name": "MemberDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MemberDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleMembersRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupRoleMembersRequestPacket", + "signature": "LibreMetaverse.Packets.GroupRoleMembersRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupRoleMembersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleMembersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleMembersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupRoleUpdatePacket", + "signature": "LibreMetaverse.Packets.GroupRoleUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleData", + "kind": "field", + "name": "RoleData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor", + "kind": "constructor", + "name": "GroupRoleUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupRoleUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RoleDataBlock", + "signature": "LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Powers", + "kind": "field", + "name": "Powers", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.UpdateType", + "kind": "field", + "name": "UpdateType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.#ctor", + "kind": "constructor", + "name": "RoleDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RoleDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitleUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupTitleUpdatePacket", + "signature": "LibreMetaverse.Packets.GroupTitleUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor", + "kind": "constructor", + "name": "GroupTitleUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupTitleUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupTitleUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitleUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitleUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.TitleRoleID", + "kind": "field", + "name": "TitleRoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitlesReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupTitlesReplyPacket", + "signature": "LibreMetaverse.Packets.GroupTitlesReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupTitlesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupTitlesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupTitlesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.Selected", + "kind": "field", + "name": "Selected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.Title", + "kind": "field", + "name": "Title", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitlesRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupTitlesRequestPacket", + "signature": "LibreMetaverse.Packets.GroupTitlesRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupTitlesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupTitlesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupTitlesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupVoteHistoryItemReplyPacket", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemData", + "kind": "field", + "name": "HistoryItemData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItem", + "kind": "field", + "name": "VoteItem", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor", + "kind": "constructor", + "name": "GroupVoteHistoryItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupVoteHistoryItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupVoteHistoryItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HistoryItemDataBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.EndDateTime", + "kind": "field", + "name": "EndDateTime", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.Majority", + "kind": "field", + "name": "Majority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ProposalText", + "kind": "field", + "name": "ProposalText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.Quorum", + "kind": "field", + "name": "Quorum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.StartDateTime", + "kind": "field", + "name": "StartDateTime", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.TerseDateID", + "kind": "field", + "name": "TerseDateID", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.VoteID", + "kind": "field", + "name": "VoteID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.VoteInitiator", + "kind": "field", + "name": "VoteInitiator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.VoteResult", + "kind": "field", + "name": "VoteResult", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.VoteType", + "kind": "field", + "name": "VoteType", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.#ctor", + "kind": "constructor", + "name": "HistoryItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HistoryItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.TotalNumItems", + "kind": "field", + "name": "TotalNumItems", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock", + "namespace": "LibreMetaverse.Packets", + "name": "VoteItemBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.CandidateID", + "kind": "field", + "name": "CandidateID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.NumVotes", + "kind": "field", + "name": "NumVotes", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.VoteCast", + "kind": "field", + "name": "VoteCast", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.#ctor", + "kind": "constructor", + "name": "VoteItemBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VoteItemBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "GroupVoteHistoryRequestPacket", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor", + "kind": "constructor", + "name": "GroupVoteHistoryRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupVoteHistoryRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupVoteHistoryRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.Header", + "namespace": "LibreMetaverse.Packets", + "name": "Header", + "signature": "LibreMetaverse.Packets.Header", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.Header.AckList", + "kind": "field", + "name": "AckList", + "static": false, + "visibility": "public", + "type": "System.UInt32[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.AppendedAcks", + "kind": "field", + "name": "AppendedAcks", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.Frequency", + "kind": "field", + "name": "Frequency", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PacketFrequency", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.Reliable", + "kind": "field", + "name": "Reliable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.Resent", + "kind": "field", + "name": "Resent", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.Sequence", + "kind": "field", + "name": "Sequence", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Header.Zerocoded", + "kind": "field", + "name": "Zerocoded", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Header.AcksToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "AcksToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Header.BuildHeader(System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "BuildHeader", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Header", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Header.FromBytes(System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Header.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.HealthMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "HealthMessagePacket", + "signature": "LibreMetaverse.Packets.HealthMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.HealthMessagePacket.HealthData", + "kind": "field", + "name": "HealthData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor", + "kind": "constructor", + "name": "HealthMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HealthMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HealthMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.HealthMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.HealthMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HealthDataBlock", + "signature": "LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.Health", + "kind": "field", + "name": "Health", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.#ctor", + "kind": "constructor", + "name": "HealthDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HealthDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImageDataPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ImageDataPacket", + "signature": "LibreMetaverse.Packets.ImageDataPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageData", + "kind": "field", + "name": "ImageData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor", + "kind": "constructor", + "name": "ImageDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ImageDataBlock", + "signature": "LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.#ctor", + "kind": "constructor", + "name": "ImageDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ImageIDBlock", + "signature": "LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Codec", + "kind": "field", + "name": "Codec", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Packets", + "kind": "field", + "name": "Packets", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.#ctor", + "kind": "constructor", + "name": "ImageIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImageNotInDatabasePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ImageNotInDatabasePacket", + "signature": "LibreMetaverse.Packets.ImageNotInDatabasePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor", + "kind": "constructor", + "name": "ImageNotInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageNotInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageNotInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageNotInDatabasePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageNotInDatabasePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ImageIDBlock", + "signature": "LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.#ctor", + "kind": "constructor", + "name": "ImageIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImagePacketPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ImagePacketPacket", + "signature": "LibreMetaverse.Packets.ImagePacketPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageData", + "kind": "field", + "name": "ImageData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor", + "kind": "constructor", + "name": "ImagePacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImagePacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImagePacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ImageDataBlock", + "signature": "LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.#ctor", + "kind": "constructor", + "name": "ImageDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ImageIDBlock", + "signature": "LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.Packet", + "kind": "field", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.#ctor", + "kind": "constructor", + "name": "ImageIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImageIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedInstantMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ImprovedInstantMessagePacket", + "signature": "LibreMetaverse.Packets.ImprovedInstantMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlock", + "kind": "field", + "name": "EstateBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlock", + "kind": "field", + "name": "MessageBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaData", + "kind": "field", + "name": "MetaData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor", + "kind": "constructor", + "name": "ImprovedInstantMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImprovedInstantMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImprovedInstantMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EstateBlockBlock", + "signature": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.#ctor", + "kind": "constructor", + "name": "EstateBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EstateBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MessageBlockBlock", + "signature": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.BinaryBucket", + "kind": "field", + "name": "BinaryBucket", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Dialog", + "kind": "field", + "name": "Dialog", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromAgentName", + "kind": "field", + "name": "FromAgentName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromGroup", + "kind": "field", + "name": "FromGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Offline", + "kind": "field", + "name": "Offline", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Timestamp", + "kind": "field", + "name": "Timestamp", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ToAgentID", + "kind": "field", + "name": "ToAgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.#ctor", + "kind": "constructor", + "name": "MessageBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MessageBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MetaDataBlock", + "signature": "LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.#ctor", + "kind": "constructor", + "name": "MetaDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MetaDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ImprovedTerseObjectUpdatePacket", + "signature": "LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor", + "kind": "constructor", + "name": "ImprovedTerseObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImprovedTerseObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ImprovedTerseObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.TextureEntry", + "kind": "field", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.TimeDilation", + "kind": "field", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InitiateDownloadPacket", + "namespace": "LibreMetaverse.Packets", + "name": "InitiateDownloadPacket", + "signature": "LibreMetaverse.Packets.InitiateDownloadPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.FileData", + "kind": "field", + "name": "FileData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor", + "kind": "constructor", + "name": "InitiateDownloadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InitiateDownloadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InitiateDownloadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FileDataBlock", + "signature": "LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.SimFilename", + "kind": "field", + "name": "SimFilename", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ViewerFilename", + "kind": "field", + "name": "ViewerFilename", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.#ctor", + "kind": "constructor", + "name": "FileDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FileDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InternalScriptMailPacket", + "namespace": "LibreMetaverse.Packets", + "name": "InternalScriptMailPacket", + "signature": "LibreMetaverse.Packets.InternalScriptMailPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor", + "kind": "constructor", + "name": "InternalScriptMailPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InternalScriptMailPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InternalScriptMailPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InternalScriptMailPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InternalScriptMailPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.Body", + "kind": "field", + "name": "Body", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.From", + "kind": "field", + "name": "From", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.To", + "kind": "field", + "name": "To", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InventoryAssetResponsePacket", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryAssetResponsePacket", + "signature": "LibreMetaverse.Packets.InventoryAssetResponsePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor", + "kind": "constructor", + "name": "InventoryAssetResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryAssetResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryAssetResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryAssetResponsePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryAssetResponsePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.IsReadable", + "kind": "field", + "name": "IsReadable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InventoryDescendentsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDescendentsPacket", + "signature": "LibreMetaverse.Packets.InventoryDescendentsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemData", + "kind": "field", + "name": "ItemData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor", + "kind": "constructor", + "name": "InventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.Descendents", + "kind": "field", + "name": "Descendents", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.Version", + "kind": "field", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ItemDataBlock", + "signature": "LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.#ctor", + "kind": "constructor", + "name": "ItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "InviteGroupRequestPacket", + "signature": "LibreMetaverse.Packets.InviteGroupRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteData", + "kind": "field", + "name": "InviteData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor", + "kind": "constructor", + "name": "InviteGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InviteGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InviteGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InviteDataBlock", + "signature": "LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.InviteeID", + "kind": "field", + "name": "InviteeID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.#ctor", + "kind": "constructor", + "name": "InviteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InviteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupResponsePacket", + "namespace": "LibreMetaverse.Packets", + "name": "InviteGroupResponsePacket", + "signature": "LibreMetaverse.Packets.InviteGroupResponsePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteData", + "kind": "field", + "name": "InviteData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor", + "kind": "constructor", + "name": "InviteGroupResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InviteGroupResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InviteGroupResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.GroupLimit", + "kind": "field", + "name": "GroupLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InviteDataBlock", + "signature": "LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.InviteeID", + "kind": "field", + "name": "InviteeID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.MembershipFee", + "kind": "field", + "name": "MembershipFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.RoleID", + "kind": "field", + "name": "RoleID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.#ctor", + "kind": "constructor", + "name": "InviteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InviteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "JoinGroupReplyPacket", + "signature": "LibreMetaverse.Packets.JoinGroupReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor", + "kind": "constructor", + "name": "JoinGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "JoinGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "JoinGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "JoinGroupRequestExtendedPacket", + "signature": "LibreMetaverse.Packets.JoinGroupRequestExtendedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor", + "kind": "constructor", + "name": "JoinGroupRequestExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "JoinGroupRequestExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "JoinGroupRequestExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.GroupLimit", + "kind": "field", + "name": "GroupLimit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "JoinGroupRequestPacket", + "signature": "LibreMetaverse.Packets.JoinGroupRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor", + "kind": "constructor", + "name": "JoinGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "JoinGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "JoinGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KickUserAckPacket", + "namespace": "LibreMetaverse.Packets", + "name": "KickUserAckPacket", + "signature": "LibreMetaverse.Packets.KickUserAckPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KickUserAckPacket.UserInfo", + "kind": "field", + "name": "UserInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor", + "kind": "constructor", + "name": "KickUserAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KickUserAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KickUserAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserAckPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserAckPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UserInfoBlock", + "signature": "LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.#ctor", + "kind": "constructor", + "name": "UserInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KickUserPacket", + "namespace": "LibreMetaverse.Packets", + "name": "KickUserPacket", + "signature": "LibreMetaverse.Packets.KickUserPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.TargetBlock", + "kind": "field", + "name": "TargetBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.UserInfo", + "kind": "field", + "name": "UserInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.KickUserPacket.UserInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor", + "kind": "constructor", + "name": "KickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TargetBlockBlock", + "signature": "LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.TargetIP", + "kind": "field", + "name": "TargetIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.TargetPort", + "kind": "field", + "name": "TargetPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.#ctor", + "kind": "constructor", + "name": "TargetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TargetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UserInfoBlock", + "signature": "LibreMetaverse.Packets.KickUserPacket.UserInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.#ctor", + "kind": "constructor", + "name": "UserInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KillChildAgentsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "KillChildAgentsPacket", + "signature": "LibreMetaverse.Packets.KillChildAgentsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlock", + "kind": "field", + "name": "IDBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor", + "kind": "constructor", + "name": "KillChildAgentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KillChildAgentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KillChildAgentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KillChildAgentsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KillChildAgentsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "IDBlockBlock", + "signature": "LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.#ctor", + "kind": "constructor", + "name": "IDBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "IDBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KillObjectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "KillObjectPacket", + "signature": "LibreMetaverse.Packets.KillObjectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KillObjectPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor", + "kind": "constructor", + "name": "KillObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KillObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "KillObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KillObjectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KillObjectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LandStatReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LandStatReplyPacket", + "signature": "LibreMetaverse.Packets.LandStatReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportData", + "kind": "field", + "name": "ReportData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestData", + "kind": "field", + "name": "RequestData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor", + "kind": "constructor", + "name": "LandStatReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LandStatReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LandStatReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReportDataBlock", + "signature": "LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.LocationX", + "kind": "field", + "name": "LocationX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.LocationY", + "kind": "field", + "name": "LocationY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.LocationZ", + "kind": "field", + "name": "LocationZ", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.OwnerName", + "kind": "field", + "name": "OwnerName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.Score", + "kind": "field", + "name": "Score", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.TaskLocalID", + "kind": "field", + "name": "TaskLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.TaskName", + "kind": "field", + "name": "TaskName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.#ctor", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestDataBlock", + "signature": "LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ReportType", + "kind": "field", + "name": "ReportType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.RequestFlags", + "kind": "field", + "name": "RequestFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.TotalObjectCount", + "kind": "field", + "name": "TotalObjectCount", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.#ctor", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LandStatRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LandStatRequestPacket", + "signature": "LibreMetaverse.Packets.LandStatRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestData", + "kind": "field", + "name": "RequestData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor", + "kind": "constructor", + "name": "LandStatRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LandStatRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LandStatRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestDataBlock", + "signature": "LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.Filter", + "kind": "field", + "name": "Filter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ParcelLocalID", + "kind": "field", + "name": "ParcelLocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ReportType", + "kind": "field", + "name": "ReportType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.RequestFlags", + "kind": "field", + "name": "RequestFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.#ctor", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LargeGenericMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "LargeGenericMessagePacket", + "signature": "LibreMetaverse.Packets.LargeGenericMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodData", + "kind": "field", + "name": "MethodData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamList", + "kind": "field", + "name": "ParamList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor", + "kind": "constructor", + "name": "LargeGenericMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LargeGenericMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LargeGenericMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MethodDataBlock", + "signature": "LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.Invoice", + "kind": "field", + "name": "Invoice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.#ctor", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParamListBlock", + "signature": "LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.Parameter", + "kind": "field", + "name": "Parameter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.#ctor", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LayerDataPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LayerDataPacket", + "signature": "LibreMetaverse.Packets.LayerDataPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LayerDataPacket.LayerData", + "kind": "field", + "name": "LayerData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LayerDataPacket.LayerID", + "kind": "field", + "name": "LayerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor", + "kind": "constructor", + "name": "LayerDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LayerDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LayerDataPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "LayerDataBlock", + "signature": "LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.#ctor", + "kind": "constructor", + "name": "LayerDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LayerDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "LayerIDBlock", + "signature": "LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.#ctor", + "kind": "constructor", + "name": "LayerIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LayerIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LeaveGroupReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LeaveGroupReplyPacket", + "signature": "LibreMetaverse.Packets.LeaveGroupReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor", + "kind": "constructor", + "name": "LeaveGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LeaveGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LeaveGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LeaveGroupRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LeaveGroupRequestPacket", + "signature": "LibreMetaverse.Packets.LeaveGroupRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor", + "kind": "constructor", + "name": "LeaveGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LeaveGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LeaveGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LinkInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LinkInventoryItemPacket", + "signature": "LibreMetaverse.Packets.LinkInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlock", + "kind": "field", + "name": "InventoryBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "LinkInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LinkInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LinkInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryBlockBlock", + "signature": "LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.OldItemID", + "kind": "field", + "name": "OldItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.#ctor", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LiveHelpGroupReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LiveHelpGroupReplyPacket", + "signature": "LibreMetaverse.Packets.LiveHelpGroupReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyData", + "kind": "field", + "name": "ReplyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor", + "kind": "constructor", + "name": "LiveHelpGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LiveHelpGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LiveHelpGroupReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReplyDataBlock", + "signature": "LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.Selection", + "kind": "field", + "name": "Selection", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.#ctor", + "kind": "constructor", + "name": "ReplyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReplyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LiveHelpGroupRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LiveHelpGroupRequestPacket", + "signature": "LibreMetaverse.Packets.LiveHelpGroupRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestData", + "kind": "field", + "name": "RequestData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor", + "kind": "constructor", + "name": "LiveHelpGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LiveHelpGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LiveHelpGroupRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestDataBlock", + "signature": "LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.#ctor", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LoadURLPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LoadURLPacket", + "signature": "LibreMetaverse.Packets.LoadURLPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LoadURLPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor", + "kind": "constructor", + "name": "LoadURLPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LoadURLPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LoadURLPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LoadURLPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LoadURLPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LoadURLPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.LoadURLPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ObjectName", + "kind": "field", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.OwnerIsGroup", + "kind": "field", + "name": "OwnerIsGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.URL", + "kind": "field", + "name": "URL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LoadURLPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogDwellTimePacket", + "namespace": "LibreMetaverse.Packets", + "name": "LogDwellTimePacket", + "signature": "LibreMetaverse.Packets.LogDwellTimePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfo", + "kind": "field", + "name": "DwellInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor", + "kind": "constructor", + "name": "LogDwellTimePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogDwellTimePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogDwellTimePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogDwellTimePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogDwellTimePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DwellInfoBlock", + "signature": "LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.AvgAgentsInView", + "kind": "field", + "name": "AvgAgentsInView", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.AvgViewerFPS", + "kind": "field", + "name": "AvgViewerFPS", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.RegionX", + "kind": "field", + "name": "RegionX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.RegionY", + "kind": "field", + "name": "RegionY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.#ctor", + "kind": "constructor", + "name": "DwellInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DwellInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LogFailedMoneyTransactionPacket", + "signature": "LibreMetaverse.Packets.LogFailedMoneyTransactionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor", + "kind": "constructor", + "name": "LogFailedMoneyTransactionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogFailedMoneyTransactionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogFailedMoneyTransactionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FailureType", + "kind": "field", + "name": "FailureType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.SimulatorIP", + "kind": "field", + "name": "SimulatorIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.TransactionTime", + "kind": "field", + "name": "TransactionTime", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogParcelChangesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LogParcelChangesPacket", + "signature": "LibreMetaverse.Packets.LogParcelChangesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor", + "kind": "constructor", + "name": "LogParcelChangesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogParcelChangesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogParcelChangesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.Action", + "kind": "field", + "name": "Action", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.IsOwnerGroup", + "kind": "field", + "name": "IsOwnerGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogTextMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "LogTextMessagePacket", + "signature": "LibreMetaverse.Packets.LogTextMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor", + "kind": "constructor", + "name": "LogTextMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogTextMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogTextMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogTextMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogTextMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromAgentId", + "kind": "field", + "name": "FromAgentId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.ToAgentId", + "kind": "field", + "name": "ToAgentId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogoutReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LogoutReplyPacket", + "signature": "LibreMetaverse.Packets.LogoutReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogoutReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogoutReplyPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor", + "kind": "constructor", + "name": "LogoutReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogoutReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogoutReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogoutRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "LogoutRequestPacket", + "signature": "LibreMetaverse.Packets.LogoutRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogoutRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor", + "kind": "constructor", + "name": "LogoutRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogoutRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LogoutRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MalformedDataException", + "namespace": "LibreMetaverse.Packets", + "name": "MalformedDataException", + "signature": "LibreMetaverse.Packets.MalformedDataException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.ApplicationException", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.MalformedDataException.#ctor", + "kind": "constructor", + "name": "MalformedDataException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MalformedDataException.#ctor(System.String)", + "kind": "constructor", + "name": "MalformedDataException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "Message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapBlockReplyPacket", + "signature": "LibreMetaverse.Packets.MapBlockReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor", + "kind": "constructor", + "name": "MapBlockReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapBlockReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapBlockReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Access", + "kind": "field", + "name": "Access", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Agents", + "kind": "field", + "name": "Agents", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.MapImageID", + "kind": "field", + "name": "MapImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.WaterHeight", + "kind": "field", + "name": "WaterHeight", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SizeBlock", + "signature": "LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.SizeX", + "kind": "field", + "name": "SizeX", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.SizeY", + "kind": "field", + "name": "SizeY", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.#ctor", + "kind": "constructor", + "name": "SizeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SizeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapBlockRequestPacket", + "signature": "LibreMetaverse.Packets.MapBlockRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionData", + "kind": "field", + "name": "PositionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor", + "kind": "constructor", + "name": "MapBlockRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapBlockRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapBlockRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PositionDataBlock", + "signature": "LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MaxX", + "kind": "field", + "name": "MaxX", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MaxY", + "kind": "field", + "name": "MaxY", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MinX", + "kind": "field", + "name": "MinX", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MinY", + "kind": "field", + "name": "MinY", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.#ctor", + "kind": "constructor", + "name": "PositionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PositionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapItemReplyPacket", + "signature": "LibreMetaverse.Packets.MapItemReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapItemReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.RequestData", + "kind": "field", + "name": "RequestData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor", + "kind": "constructor", + "name": "MapItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapItemReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.MapItemReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Extra", + "kind": "field", + "name": "Extra", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Extra2", + "kind": "field", + "name": "Extra2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestDataBlock", + "signature": "LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ItemType", + "kind": "field", + "name": "ItemType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.#ctor", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapItemRequestPacket", + "signature": "LibreMetaverse.Packets.MapItemRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.RequestData", + "kind": "field", + "name": "RequestData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor", + "kind": "constructor", + "name": "MapItemRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapItemRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapItemRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestDataBlock", + "signature": "LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ItemType", + "kind": "field", + "name": "ItemType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.#ctor", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapLayerReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapLayerReplyPacket", + "signature": "LibreMetaverse.Packets.MapLayerReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerData", + "kind": "field", + "name": "LayerData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor", + "kind": "constructor", + "name": "MapLayerReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapLayerReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapLayerReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "LayerDataBlock", + "signature": "LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Bottom", + "kind": "field", + "name": "Bottom", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Left", + "kind": "field", + "name": "Left", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Right", + "kind": "field", + "name": "Right", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Top", + "kind": "field", + "name": "Top", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.#ctor", + "kind": "constructor", + "name": "LayerDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LayerDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapLayerRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapLayerRequestPacket", + "signature": "LibreMetaverse.Packets.MapLayerRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor", + "kind": "constructor", + "name": "MapLayerRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapLayerRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapLayerRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapNameRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MapNameRequestPacket", + "signature": "LibreMetaverse.Packets.MapNameRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.NameData", + "kind": "field", + "name": "NameData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor", + "kind": "constructor", + "name": "MapNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NameDataBlock", + "signature": "LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.#ctor", + "kind": "constructor", + "name": "NameDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NameDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MeanCollisionAlertPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MeanCollisionAlertPacket", + "signature": "LibreMetaverse.Packets.MeanCollisionAlertPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollision", + "kind": "field", + "name": "MeanCollision", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor", + "kind": "constructor", + "name": "MeanCollisionAlertPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MeanCollisionAlertPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MeanCollisionAlertPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MeanCollisionAlertPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MeanCollisionAlertPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MeanCollisionBlock", + "signature": "LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Mag", + "kind": "field", + "name": "Mag", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Perp", + "kind": "field", + "name": "Perp", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Victim", + "kind": "field", + "name": "Victim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.#ctor", + "kind": "constructor", + "name": "MeanCollisionBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MeanCollisionBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MergeParcelPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MergeParcelPacket", + "signature": "LibreMetaverse.Packets.MergeParcelPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelData", + "kind": "field", + "name": "MasterParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelData", + "kind": "field", + "name": "SlaveParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor", + "kind": "constructor", + "name": "MergeParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MergeParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MergeParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MasterParcelDataBlock", + "signature": "LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.MasterID", + "kind": "field", + "name": "MasterID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.#ctor", + "kind": "constructor", + "name": "MasterParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MasterParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SlaveParcelDataBlock", + "signature": "LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.SlaveID", + "kind": "field", + "name": "SlaveID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.#ctor", + "kind": "constructor", + "name": "SlaveParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SlaveParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ModifyLandPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ModifyLandPacket", + "signature": "LibreMetaverse.Packets.ModifyLandPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlock", + "kind": "field", + "name": "ModifyBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtended", + "kind": "field", + "name": "ModifyBlockExtended", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor", + "kind": "constructor", + "name": "ModifyLandPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ModifyLandPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ModifyLandPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ModifyBlockBlock", + "signature": "LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Action", + "kind": "field", + "name": "Action", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.BrushSize", + "kind": "field", + "name": "BrushSize", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Height", + "kind": "field", + "name": "Height", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Seconds", + "kind": "field", + "name": "Seconds", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.#ctor", + "kind": "constructor", + "name": "ModifyBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ModifyBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ModifyBlockExtendedBlock", + "signature": "LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.BrushSize", + "kind": "field", + "name": "BrushSize", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.#ctor", + "kind": "constructor", + "name": "ModifyBlockExtendedBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ModifyBlockExtendedBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.East", + "kind": "field", + "name": "East", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.North", + "kind": "field", + "name": "North", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.South", + "kind": "field", + "name": "South", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.West", + "kind": "field", + "name": "West", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyBalanceReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyBalanceReplyPacket", + "signature": "LibreMetaverse.Packets.MoneyBalanceReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfo", + "kind": "field", + "name": "TransactionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor", + "kind": "constructor", + "name": "MoneyBalanceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyBalanceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyBalanceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.MoneyBalance", + "kind": "field", + "name": "MoneyBalance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCommitted", + "kind": "field", + "name": "SquareMetersCommitted", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCredit", + "kind": "field", + "name": "SquareMetersCredit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.TransactionSuccess", + "kind": "field", + "name": "TransactionSuccess", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionInfoBlock", + "signature": "LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.IsDestGroup", + "kind": "field", + "name": "IsDestGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.IsSourceGroup", + "kind": "field", + "name": "IsSourceGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ItemDescription", + "kind": "field", + "name": "ItemDescription", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.#ctor", + "kind": "constructor", + "name": "TransactionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyBalanceRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyBalanceRequestPacket", + "signature": "LibreMetaverse.Packets.MoneyBalanceRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor", + "kind": "constructor", + "name": "MoneyBalanceRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyBalanceRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyBalanceRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyTransferBackendPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyTransferBackendPacket", + "signature": "LibreMetaverse.Packets.MoneyTransferBackendPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor", + "kind": "constructor", + "name": "MoneyTransferBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyTransferBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyTransferBackendPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferBackendPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferBackendPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.AggregatePermInventory", + "kind": "field", + "name": "AggregatePermInventory", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.AggregatePermNextOwner", + "kind": "field", + "name": "AggregatePermNextOwner", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.TransactionTime", + "kind": "field", + "name": "TransactionTime", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyTransferRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyTransferRequestPacket", + "signature": "LibreMetaverse.Packets.MoneyTransferRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor", + "kind": "constructor", + "name": "MoneyTransferRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyTransferRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyTransferRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.AggregatePermInventory", + "kind": "field", + "name": "AggregatePermInventory", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.AggregatePermNextOwner", + "kind": "field", + "name": "AggregatePermNextOwner", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveInventoryFolderPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoveInventoryFolderPacket", + "signature": "LibreMetaverse.Packets.MoveInventoryFolderPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor", + "kind": "constructor", + "name": "MoveInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoveInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoveInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.Stamp", + "kind": "field", + "name": "Stamp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoveInventoryItemPacket", + "signature": "LibreMetaverse.Packets.MoveInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "MoveInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoveInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoveInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.Stamp", + "kind": "field", + "name": "Stamp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.NewName", + "kind": "field", + "name": "NewName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveTaskInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MoveTaskInventoryPacket", + "signature": "LibreMetaverse.Packets.MoveTaskInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor", + "kind": "constructor", + "name": "MoveTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoveTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoveTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MultipleObjectUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "MultipleObjectUpdatePacket", + "signature": "LibreMetaverse.Packets.MultipleObjectUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor", + "kind": "constructor", + "name": "MultipleObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MultipleObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MultipleObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MuteListRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "MuteListRequestPacket", + "signature": "LibreMetaverse.Packets.MuteListRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MuteListRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MuteListRequestPacket.MuteData", + "kind": "field", + "name": "MuteData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor", + "kind": "constructor", + "name": "MuteListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MuteDataBlock", + "signature": "LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.MuteCRC", + "kind": "field", + "name": "MuteCRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.#ctor", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MuteListUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "MuteListUpdatePacket", + "signature": "LibreMetaverse.Packets.MuteListUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MuteListUpdatePacket.MuteData", + "kind": "field", + "name": "MuteData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor", + "kind": "constructor", + "name": "MuteListUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteListUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteListUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MuteDataBlock", + "signature": "LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.Filename", + "kind": "field", + "name": "Filename", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.#ctor", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NameValuePairPacket", + "namespace": "LibreMetaverse.Packets", + "name": "NameValuePairPacket", + "signature": "LibreMetaverse.Packets.NameValuePairPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NameValuePairPacket.NameValueData", + "kind": "field", + "name": "NameValueData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NameValuePairPacket.TaskData", + "kind": "field", + "name": "TaskData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor", + "kind": "constructor", + "name": "NameValuePairPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NameValuePairPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NameValuePairPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NameValueDataBlock", + "signature": "LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.NVPair", + "kind": "field", + "name": "NVPair", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.#ctor", + "kind": "constructor", + "name": "NameValueDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NameValueDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TaskDataBlock", + "signature": "LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.#ctor", + "kind": "constructor", + "name": "TaskDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TaskDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NearestLandingRegionReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "NearestLandingRegionReplyPacket", + "signature": "LibreMetaverse.Packets.NearestLandingRegionReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionData", + "kind": "field", + "name": "LandingRegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor", + "kind": "constructor", + "name": "NearestLandingRegionReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NearestLandingRegionReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NearestLandingRegionReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "LandingRegionDataBlock", + "signature": "LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.#ctor", + "kind": "constructor", + "name": "LandingRegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "LandingRegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NearestLandingRegionRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "NearestLandingRegionRequestPacket", + "signature": "LibreMetaverse.Packets.NearestLandingRegionRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionData", + "kind": "field", + "name": "RequestingRegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor", + "kind": "constructor", + "name": "NearestLandingRegionRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NearestLandingRegionRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NearestLandingRegionRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestingRegionDataBlock", + "signature": "LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.#ctor", + "kind": "constructor", + "name": "RequestingRegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestingRegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "NearestLandingRegionUpdatedPacket", + "signature": "LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor", + "kind": "constructor", + "name": "NearestLandingRegionUpdatedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NearestLandingRegionUpdatedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NearestLandingRegionUpdatedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NeighborListPacket", + "namespace": "LibreMetaverse.Packets", + "name": "NeighborListPacket", + "signature": "LibreMetaverse.Packets.NeighborListPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlock", + "kind": "field", + "name": "NeighborBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor", + "kind": "constructor", + "name": "NeighborListPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NeighborListPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NeighborListPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NeighborListPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NeighborListPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NeighborBlockBlock", + "signature": "LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.PublicIP", + "kind": "field", + "name": "PublicIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.PublicPort", + "kind": "field", + "name": "PublicPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.#ctor", + "kind": "constructor", + "name": "NeighborBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NeighborBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NetTestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "NetTestPacket", + "signature": "LibreMetaverse.Packets.NetTestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NetTestPacket.NetBlock", + "kind": "field", + "name": "NetBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.NetTestPacket.NetBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor", + "kind": "constructor", + "name": "NetTestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NetTestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NetTestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NetTestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NetTestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NetBlockBlock", + "signature": "LibreMetaverse.Packets.NetTestPacket.NetBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.#ctor", + "kind": "constructor", + "name": "NetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAddPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectAddPacket", + "signature": "LibreMetaverse.Packets.ObjectAddPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor", + "kind": "constructor", + "name": "ObjectAddPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectAddPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectAddPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.AddFlags", + "kind": "field", + "name": "AddFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.BypassRaycast", + "kind": "field", + "name": "BypassRaycast", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PCode", + "kind": "field", + "name": "PCode", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathBegin", + "kind": "field", + "name": "PathBegin", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathCurve", + "kind": "field", + "name": "PathCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathEnd", + "kind": "field", + "name": "PathEnd", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathRadiusOffset", + "kind": "field", + "name": "PathRadiusOffset", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathRevolutions", + "kind": "field", + "name": "PathRevolutions", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathScaleX", + "kind": "field", + "name": "PathScaleX", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathScaleY", + "kind": "field", + "name": "PathScaleY", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathShearX", + "kind": "field", + "name": "PathShearX", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathShearY", + "kind": "field", + "name": "PathShearY", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathSkew", + "kind": "field", + "name": "PathSkew", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTaperX", + "kind": "field", + "name": "PathTaperX", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTaperY", + "kind": "field", + "name": "PathTaperY", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTwist", + "kind": "field", + "name": "PathTwist", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTwistBegin", + "kind": "field", + "name": "PathTwistBegin", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileBegin", + "kind": "field", + "name": "ProfileBegin", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileCurve", + "kind": "field", + "name": "ProfileCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileEnd", + "kind": "field", + "name": "ProfileEnd", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileHollow", + "kind": "field", + "name": "ProfileHollow", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.RayEnd", + "kind": "field", + "name": "RayEnd", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.RayEndIsIntersection", + "kind": "field", + "name": "RayEndIsIntersection", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.RayStart", + "kind": "field", + "name": "RayStart", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.RayTargetID", + "kind": "field", + "name": "RayTargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAnimationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectAnimationPacket", + "signature": "LibreMetaverse.Packets.ObjectAnimationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationList", + "kind": "field", + "name": "AnimationList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAnimationPacket.Sender", + "kind": "field", + "name": "Sender", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor", + "kind": "constructor", + "name": "ObjectAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectAnimationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AnimationListBlock", + "signature": "LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.AnimID", + "kind": "field", + "name": "AnimID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.AnimSequenceID", + "kind": "field", + "name": "AnimSequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.#ctor", + "kind": "constructor", + "name": "AnimationListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AnimationListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SenderBlock", + "signature": "LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.#ctor", + "kind": "constructor", + "name": "SenderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SenderBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAttachPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectAttachPacket", + "signature": "LibreMetaverse.Packets.ObjectAttachPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor", + "kind": "constructor", + "name": "ObjectAttachPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectAttachPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectAttachPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.AttachmentPoint", + "kind": "field", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectBuyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectBuyPacket", + "signature": "LibreMetaverse.Packets.ObjectBuyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor", + "kind": "constructor", + "name": "ObjectBuyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectBuyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectBuyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.CategoryID", + "kind": "field", + "name": "CategoryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectBypassModUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectBypassModUpdatePacket", + "signature": "LibreMetaverse.Packets.ObjectBypassModUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor", + "kind": "constructor", + "name": "ObjectBypassModUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectBypassModUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectBypassModUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.PropertyID", + "kind": "field", + "name": "PropertyID", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectCategoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectCategoryPacket", + "signature": "LibreMetaverse.Packets.ObjectCategoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor", + "kind": "constructor", + "name": "ObjectCategoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectCategoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectCategoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectClickActionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectClickActionPacket", + "signature": "LibreMetaverse.Packets.ObjectClickActionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor", + "kind": "constructor", + "name": "ObjectClickActionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectClickActionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectClickActionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ClickAction", + "kind": "field", + "name": "ClickAction", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeGrabPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDeGrabPacket", + "signature": "LibreMetaverse.Packets.ObjectDeGrabPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfo", + "kind": "field", + "name": "SurfaceInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor", + "kind": "constructor", + "name": "ObjectDeGrabPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDeGrabPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDeGrabPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SurfaceInfoBlock", + "signature": "LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.Binormal", + "kind": "field", + "name": "Binormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FaceIndex", + "kind": "field", + "name": "FaceIndex", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.Normal", + "kind": "field", + "name": "Normal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.STCoord", + "kind": "field", + "name": "STCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.UVCoord", + "kind": "field", + "name": "UVCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.#ctor", + "kind": "constructor", + "name": "SurfaceInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SurfaceInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDeletePacket", + "signature": "LibreMetaverse.Packets.ObjectDeletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor", + "kind": "constructor", + "name": "ObjectDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.Force", + "kind": "field", + "name": "Force", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDelinkPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDelinkPacket", + "signature": "LibreMetaverse.Packets.ObjectDelinkPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDelinkPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor", + "kind": "constructor", + "name": "ObjectDelinkPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDelinkPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDelinkPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDescriptionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDescriptionPacket", + "signature": "LibreMetaverse.Packets.ObjectDescriptionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor", + "kind": "constructor", + "name": "ObjectDescriptionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDescriptionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDescriptionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeselectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDeselectPacket", + "signature": "LibreMetaverse.Packets.ObjectDeselectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeselectPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor", + "kind": "constructor", + "name": "ObjectDeselectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDeselectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDeselectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDetachPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDetachPacket", + "signature": "LibreMetaverse.Packets.ObjectDetachPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDetachPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDetachPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor", + "kind": "constructor", + "name": "ObjectDetachPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDetachPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDetachPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDropPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDropPacket", + "signature": "LibreMetaverse.Packets.ObjectDropPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDropPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDropPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor", + "kind": "constructor", + "name": "ObjectDropPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDropPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDropPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDuplicateOnRayPacket", + "signature": "LibreMetaverse.Packets.ObjectDuplicateOnRayPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor", + "kind": "constructor", + "name": "ObjectDuplicateOnRayPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDuplicateOnRayPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDuplicateOnRayPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.BypassRaycast", + "kind": "field", + "name": "BypassRaycast", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.CopyCenters", + "kind": "field", + "name": "CopyCenters", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.CopyRotates", + "kind": "field", + "name": "CopyRotates", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.DuplicateFlags", + "kind": "field", + "name": "DuplicateFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.RayEnd", + "kind": "field", + "name": "RayEnd", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.RayEndIsIntersection", + "kind": "field", + "name": "RayEndIsIntersection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.RayStart", + "kind": "field", + "name": "RayStart", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.RayTargetID", + "kind": "field", + "name": "RayTargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDuplicatePacket", + "signature": "LibreMetaverse.Packets.ObjectDuplicatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedData", + "kind": "field", + "name": "SharedData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor", + "kind": "constructor", + "name": "ObjectDuplicatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDuplicatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDuplicatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SharedDataBlock", + "signature": "LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.DuplicateFlags", + "kind": "field", + "name": "DuplicateFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.Offset", + "kind": "field", + "name": "Offset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.#ctor", + "kind": "constructor", + "name": "SharedDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SharedDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectExportSelectedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectExportSelectedPacket", + "signature": "LibreMetaverse.Packets.ObjectExportSelectedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor", + "kind": "constructor", + "name": "ObjectExportSelectedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectExportSelectedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectExportSelectedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.VolumeDetail", + "kind": "field", + "name": "VolumeDetail", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectExtraParamsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectExtraParamsPacket", + "signature": "LibreMetaverse.Packets.ObjectExtraParamsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor", + "kind": "constructor", + "name": "ObjectExtraParamsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectExtraParamsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectExtraParamsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamData", + "kind": "field", + "name": "ParamData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamInUse", + "kind": "field", + "name": "ParamInUse", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamSize", + "kind": "field", + "name": "ParamSize", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamType", + "kind": "field", + "name": "ParamType", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectFlagUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectFlagUpdatePacket", + "signature": "LibreMetaverse.Packets.ObjectFlagUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysics", + "kind": "field", + "name": "ExtraPhysics", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor", + "kind": "constructor", + "name": "ObjectFlagUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectFlagUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectFlagUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.CastsShadows", + "kind": "field", + "name": "CastsShadows", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.IsPhantom", + "kind": "field", + "name": "IsPhantom", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.IsTemporary", + "kind": "field", + "name": "IsTemporary", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.UsePhysics", + "kind": "field", + "name": "UsePhysics", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ExtraPhysicsBlock", + "signature": "LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Density", + "kind": "field", + "name": "Density", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Friction", + "kind": "field", + "name": "Friction", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.GravityMultiplier", + "kind": "field", + "name": "GravityMultiplier", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.PhysicsShapeType", + "kind": "field", + "name": "PhysicsShapeType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Restitution", + "kind": "field", + "name": "Restitution", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.#ctor", + "kind": "constructor", + "name": "ExtraPhysicsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ExtraPhysicsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectGrabPacket", + "signature": "LibreMetaverse.Packets.ObjectGrabPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfo", + "kind": "field", + "name": "SurfaceInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor", + "kind": "constructor", + "name": "ObjectGrabPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectGrabPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectGrabPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.GrabOffset", + "kind": "field", + "name": "GrabOffset", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SurfaceInfoBlock", + "signature": "LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.Binormal", + "kind": "field", + "name": "Binormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FaceIndex", + "kind": "field", + "name": "FaceIndex", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.Normal", + "kind": "field", + "name": "Normal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.STCoord", + "kind": "field", + "name": "STCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.UVCoord", + "kind": "field", + "name": "UVCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.#ctor", + "kind": "constructor", + "name": "SurfaceInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SurfaceInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectGrabUpdatePacket", + "signature": "LibreMetaverse.Packets.ObjectGrabUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfo", + "kind": "field", + "name": "SurfaceInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor", + "kind": "constructor", + "name": "ObjectGrabUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectGrabUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectGrabUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.GrabOffsetInitial", + "kind": "field", + "name": "GrabOffsetInitial", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.GrabPosition", + "kind": "field", + "name": "GrabPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.TimeSinceLast", + "kind": "field", + "name": "TimeSinceLast", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SurfaceInfoBlock", + "signature": "LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.Binormal", + "kind": "field", + "name": "Binormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FaceIndex", + "kind": "field", + "name": "FaceIndex", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.Normal", + "kind": "field", + "name": "Normal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.STCoord", + "kind": "field", + "name": "STCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.UVCoord", + "kind": "field", + "name": "UVCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.#ctor", + "kind": "constructor", + "name": "SurfaceInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SurfaceInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGroupPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectGroupPacket", + "signature": "LibreMetaverse.Packets.ObjectGroupPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor", + "kind": "constructor", + "name": "ObjectGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectImagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectImagePacket", + "signature": "LibreMetaverse.Packets.ObjectImagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor", + "kind": "constructor", + "name": "ObjectImagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectImagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectImagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.TextureEntry", + "kind": "field", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectIncludeInSearchPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectIncludeInSearchPacket", + "signature": "LibreMetaverse.Packets.ObjectIncludeInSearchPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor", + "kind": "constructor", + "name": "ObjectIncludeInSearchPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectIncludeInSearchPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectIncludeInSearchPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.IncludeInSearch", + "kind": "field", + "name": "IncludeInSearch", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectLinkPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectLinkPacket", + "signature": "LibreMetaverse.Packets.ObjectLinkPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectLinkPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectLinkPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor", + "kind": "constructor", + "name": "ObjectLinkPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectLinkPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectLinkPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectMaterialPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectMaterialPacket", + "signature": "LibreMetaverse.Packets.ObjectMaterialPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor", + "kind": "constructor", + "name": "ObjectMaterialPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectMaterialPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectMaterialPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectNamePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectNamePacket", + "signature": "LibreMetaverse.Packets.ObjectNamePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor", + "kind": "constructor", + "name": "ObjectNamePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectNamePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectNamePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectOwnerPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectOwnerPacket", + "signature": "LibreMetaverse.Packets.ObjectOwnerPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderData", + "kind": "field", + "name": "HeaderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor", + "kind": "constructor", + "name": "ObjectOwnerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectOwnerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectOwnerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HeaderDataBlock", + "signature": "LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.Override", + "kind": "field", + "name": "Override", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.#ctor", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPermissionsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectPermissionsPacket", + "signature": "LibreMetaverse.Packets.ObjectPermissionsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderData", + "kind": "field", + "name": "HeaderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor", + "kind": "constructor", + "name": "ObjectPermissionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPermissionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPermissionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HeaderDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.Override", + "kind": "field", + "name": "Override", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.#ctor", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Field", + "kind": "field", + "name": "Field", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Mask", + "kind": "field", + "name": "Mask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Set", + "kind": "field", + "name": "Set", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPositionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectPositionPacket", + "signature": "LibreMetaverse.Packets.ObjectPositionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor", + "kind": "constructor", + "name": "ObjectPositionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPositionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPositionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectPropertiesFamilyPacket", + "signature": "LibreMetaverse.Packets.ObjectPropertiesFamilyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor", + "kind": "constructor", + "name": "ObjectPropertiesFamilyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPropertiesFamilyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPropertiesFamilyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.LastOwnerID", + "kind": "field", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.OwnershipCost", + "kind": "field", + "name": "OwnershipCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.RequestFlags", + "kind": "field", + "name": "RequestFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPropertiesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectPropertiesPacket", + "signature": "LibreMetaverse.Packets.ObjectPropertiesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor", + "kind": "constructor", + "name": "ObjectPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.AggregatePermTextures", + "kind": "field", + "name": "AggregatePermTextures", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.AggregatePermTexturesOwner", + "kind": "field", + "name": "AggregatePermTexturesOwner", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.AggregatePerms", + "kind": "field", + "name": "AggregatePerms", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromTaskID", + "kind": "field", + "name": "FromTaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.InventorySerial", + "kind": "field", + "name": "InventorySerial", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.LastOwnerID", + "kind": "field", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.OwnershipCost", + "kind": "field", + "name": "OwnershipCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.SitName", + "kind": "field", + "name": "SitName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.TextureID", + "kind": "field", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.TouchName", + "kind": "field", + "name": "TouchName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectRotationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectRotationPacket", + "signature": "LibreMetaverse.Packets.ObjectRotationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor", + "kind": "constructor", + "name": "ObjectRotationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectRotationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectRotationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSaleInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectSaleInfoPacket", + "signature": "LibreMetaverse.Packets.ObjectSaleInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor", + "kind": "constructor", + "name": "ObjectSaleInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSaleInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSaleInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectScalePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectScalePacket", + "signature": "LibreMetaverse.Packets.ObjectScalePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor", + "kind": "constructor", + "name": "ObjectScalePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectScalePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectScalePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSelectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectSelectPacket", + "signature": "LibreMetaverse.Packets.ObjectSelectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSelectPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSelectPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor", + "kind": "constructor", + "name": "ObjectSelectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSelectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSelectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectShapePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectShapePacket", + "signature": "LibreMetaverse.Packets.ObjectShapePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor", + "kind": "constructor", + "name": "ObjectShapePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectShapePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectShapePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathBegin", + "kind": "field", + "name": "PathBegin", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathCurve", + "kind": "field", + "name": "PathCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathEnd", + "kind": "field", + "name": "PathEnd", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathRadiusOffset", + "kind": "field", + "name": "PathRadiusOffset", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathRevolutions", + "kind": "field", + "name": "PathRevolutions", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathScaleX", + "kind": "field", + "name": "PathScaleX", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathScaleY", + "kind": "field", + "name": "PathScaleY", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathShearX", + "kind": "field", + "name": "PathShearX", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathShearY", + "kind": "field", + "name": "PathShearY", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathSkew", + "kind": "field", + "name": "PathSkew", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTaperX", + "kind": "field", + "name": "PathTaperX", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTaperY", + "kind": "field", + "name": "PathTaperY", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTwist", + "kind": "field", + "name": "PathTwist", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTwistBegin", + "kind": "field", + "name": "PathTwistBegin", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileBegin", + "kind": "field", + "name": "ProfileBegin", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileCurve", + "kind": "field", + "name": "ProfileCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileEnd", + "kind": "field", + "name": "ProfileEnd", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileHollow", + "kind": "field", + "name": "ProfileHollow", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinStartPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectSpinStartPacket", + "signature": "LibreMetaverse.Packets.ObjectSpinStartPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor", + "kind": "constructor", + "name": "ObjectSpinStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSpinStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSpinStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinStopPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectSpinStopPacket", + "signature": "LibreMetaverse.Packets.ObjectSpinStopPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor", + "kind": "constructor", + "name": "ObjectSpinStopPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSpinStopPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSpinStopPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectSpinUpdatePacket", + "signature": "LibreMetaverse.Packets.ObjectSpinUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor", + "kind": "constructor", + "name": "ObjectSpinUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSpinUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectSpinUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdateCachedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectUpdateCachedPacket", + "signature": "LibreMetaverse.Packets.ObjectUpdateCachedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor", + "kind": "constructor", + "name": "ObjectUpdateCachedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectUpdateCachedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectUpdateCachedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.UpdateFlags", + "kind": "field", + "name": "UpdateFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.TimeDilation", + "kind": "field", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdateCompressedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectUpdateCompressedPacket", + "signature": "LibreMetaverse.Packets.ObjectUpdateCompressedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor", + "kind": "constructor", + "name": "ObjectUpdateCompressedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectUpdateCompressedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectUpdateCompressedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.UpdateFlags", + "kind": "field", + "name": "UpdateFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.TimeDilation", + "kind": "field", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectUpdatePacket", + "signature": "LibreMetaverse.Packets.ObjectUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor", + "kind": "constructor", + "name": "ObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ClickAction", + "kind": "field", + "name": "ClickAction", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ExtraParams", + "kind": "field", + "name": "ExtraParams", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FullID", + "kind": "field", + "name": "FullID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Gain", + "kind": "field", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.JointAxisOrAnchor", + "kind": "field", + "name": "JointAxisOrAnchor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.JointPivot", + "kind": "field", + "name": "JointPivot", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.JointType", + "kind": "field", + "name": "JointType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.NameValue", + "kind": "field", + "name": "NameValue", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PCode", + "kind": "field", + "name": "PCode", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PSBlock", + "kind": "field", + "name": "PSBlock", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathBegin", + "kind": "field", + "name": "PathBegin", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathCurve", + "kind": "field", + "name": "PathCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathEnd", + "kind": "field", + "name": "PathEnd", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathRadiusOffset", + "kind": "field", + "name": "PathRadiusOffset", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathRevolutions", + "kind": "field", + "name": "PathRevolutions", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathScaleX", + "kind": "field", + "name": "PathScaleX", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathScaleY", + "kind": "field", + "name": "PathScaleY", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathShearX", + "kind": "field", + "name": "PathShearX", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathShearY", + "kind": "field", + "name": "PathShearY", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathSkew", + "kind": "field", + "name": "PathSkew", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTaperX", + "kind": "field", + "name": "PathTaperX", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTaperY", + "kind": "field", + "name": "PathTaperY", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTwist", + "kind": "field", + "name": "PathTwist", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTwistBegin", + "kind": "field", + "name": "PathTwistBegin", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileBegin", + "kind": "field", + "name": "ProfileBegin", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileCurve", + "kind": "field", + "name": "ProfileCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileEnd", + "kind": "field", + "name": "ProfileEnd", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileHollow", + "kind": "field", + "name": "ProfileHollow", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Radius", + "kind": "field", + "name": "Radius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Sound", + "kind": "field", + "name": "Sound", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Text", + "kind": "field", + "name": "Text", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.TextColor", + "kind": "field", + "name": "TextColor", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.TextureAnim", + "kind": "field", + "name": "TextureAnim", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.TextureEntry", + "kind": "field", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.UpdateFlags", + "kind": "field", + "name": "UpdateFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.TimeDilation", + "kind": "field", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OfferCallingCardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "OfferCallingCardPacket", + "signature": "LibreMetaverse.Packets.OfferCallingCardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlock", + "kind": "field", + "name": "AgentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.OfferCallingCardPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor", + "kind": "constructor", + "name": "OfferCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OfferCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OfferCallingCardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentBlockBlock", + "signature": "LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.#ctor", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OfflineNotificationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "OfflineNotificationPacket", + "signature": "LibreMetaverse.Packets.OfflineNotificationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlock", + "kind": "field", + "name": "AgentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor", + "kind": "constructor", + "name": "OfflineNotificationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OfflineNotificationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OfflineNotificationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfflineNotificationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfflineNotificationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentBlockBlock", + "signature": "LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.#ctor", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OnlineNotificationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "OnlineNotificationPacket", + "signature": "LibreMetaverse.Packets.OnlineNotificationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlock", + "kind": "field", + "name": "AgentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor", + "kind": "constructor", + "name": "OnlineNotificationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OnlineNotificationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OnlineNotificationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OnlineNotificationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OnlineNotificationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentBlockBlock", + "signature": "LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.#ctor", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OpenCircuitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "OpenCircuitPacket", + "signature": "LibreMetaverse.Packets.OpenCircuitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfo", + "kind": "field", + "name": "CircuitInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor", + "kind": "constructor", + "name": "OpenCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OpenCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OpenCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OpenCircuitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OpenCircuitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CircuitInfoBlock", + "signature": "LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.#ctor", + "kind": "constructor", + "name": "CircuitInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CircuitInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.Packet", + "namespace": "LibreMetaverse.Packets", + "name": "Packet", + "signature": "LibreMetaverse.Packets.Packet", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.Packet.HasVariableBlocks", + "kind": "field", + "name": "HasVariableBlocks", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Packet.Header", + "kind": "field", + "name": "Header", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.Header", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Packet.MTU", + "kind": "constant", + "name": "MTU", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "1200" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.Packet.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(LibreMetaverse.Packets.PacketType)", + "kind": "method", + "name": "BuildPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(System.Byte[],System.Int32@,System.Byte[])", + "kind": "method", + "name": "BuildPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packetBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "BuildPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsEventName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacketFromOSD(System.String,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "BuildPacketFromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capsEventName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.FromBinary(System.Byte[])", + "kind": "method", + "name": "FromBinary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "binary", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.FromLLSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromLLSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.FromXmlString(System.String)", + "kind": "method", + "name": "FromXmlString", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.Packet", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xml", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.GetLLSD(LibreMetaverse.Packets.Packet)", + "kind": "method", + "name": "GetLLSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.GetType(System.UInt16,LibreMetaverse.PacketFrequency)", + "kind": "method", + "name": "GetType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "frequency", + "type": "LibreMetaverse.PacketFrequency", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.ToBinary(LibreMetaverse.Packets.Packet)", + "kind": "method", + "name": "ToBinary", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.Packet.ToXmlString(LibreMetaverse.Packets.Packet)", + "kind": "method", + "name": "ToXmlString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Packets.Packet.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.Packet.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PacketAckPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PacketAckPacket", + "signature": "LibreMetaverse.Packets.PacketAckPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PacketAckPacket.Packets", + "kind": "field", + "name": "Packets", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketAckPacket.PacketsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor", + "kind": "constructor", + "name": "PacketAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PacketAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PacketAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PacketAckPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PacketAckPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PacketsBlock", + "signature": "LibreMetaverse.Packets.PacketAckPacket.PacketsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.#ctor", + "kind": "constructor", + "name": "PacketsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PacketsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PacketBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PacketBlock", + "signature": "LibreMetaverse.Packets.PacketBlock", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.PacketBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PacketBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PacketDecoder", + "namespace": "LibreMetaverse.Packets", + "name": "PacketDecoder", + "signature": "LibreMetaverse.Packets.PacketDecoder", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.PacketDecoder.InterpretOptions(LibreMetaverse.Packets.Header)", + "kind": "method", + "name": "InterpretOptions", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketDecoder.MessageToString(System.Object,System.Int32)", + "kind": "method", + "name": "MessageToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "recurseLevel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Uses runtime reflection to enumerate IMessage fields. Not AOT-safe." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PacketDecoder.PacketToString(LibreMetaverse.Packets.Packet)", + "kind": "method", + "name": "PacketToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PacketType", + "namespace": "LibreMetaverse.Packets", + "name": "PacketType", + "signature": "LibreMetaverse.Packets.PacketType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AbortXfer", + "kind": "enum_value", + "name": "AbortXfer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65693" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AcceptCallingCard", + "kind": "enum_value", + "name": "AcceptCallingCard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65838" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AcceptFriendship", + "kind": "enum_value", + "name": "AcceptFriendship", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65833" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ActivateGestures", + "kind": "enum_value", + "name": "ActivateGestures", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65852" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ActivateGroup", + "kind": "enum_value", + "name": "ActivateGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65904" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AddCircuitCode", + "kind": "enum_value", + "name": "AddCircuitCode", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65538" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentAlertMessage", + "kind": "enum_value", + "name": "AgentAlertMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65671" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentAnimation", + "kind": "enum_value", + "name": "AgentAnimation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196613" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentCachedTexture", + "kind": "enum_value", + "name": "AgentCachedTexture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65920" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentCachedTextureResponse", + "kind": "enum_value", + "name": "AgentCachedTextureResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65921" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentDataUpdate", + "kind": "enum_value", + "name": "AgentDataUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65923" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentDataUpdateRequest", + "kind": "enum_value", + "name": "AgentDataUpdateRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65922" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentDropGroup", + "kind": "enum_value", + "name": "AgentDropGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65926" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentFOV", + "kind": "enum_value", + "name": "AgentFOV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65618" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentGroupDataUpdate", + "kind": "enum_value", + "name": "AgentGroupDataUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65925" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentHeightWidth", + "kind": "enum_value", + "name": "AgentHeightWidth", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65619" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentIsNowWearing", + "kind": "enum_value", + "name": "AgentIsNowWearing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65919" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentMovementComplete", + "kind": "enum_value", + "name": "AgentMovementComplete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65786" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentPause", + "kind": "enum_value", + "name": "AgentPause", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65614" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentQuitCopy", + "kind": "enum_value", + "name": "AgentQuitCopy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65621" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentRequestSit", + "kind": "enum_value", + "name": "AgentRequestSit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196614" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentResume", + "kind": "enum_value", + "name": "AgentResume", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65615" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentSetAppearance", + "kind": "enum_value", + "name": "AgentSetAppearance", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65620" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentSit", + "kind": "enum_value", + "name": "AgentSit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196615" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentThrottle", + "kind": "enum_value", + "name": "AgentThrottle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65617" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentUpdate", + "kind": "enum_value", + "name": "AgentUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196612" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentWearablesRequest", + "kind": "enum_value", + "name": "AgentWearablesRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65917" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AgentWearablesUpdate", + "kind": "enum_value", + "name": "AgentWearablesUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65918" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AlertMessage", + "kind": "enum_value", + "name": "AlertMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65670" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AssetUploadComplete", + "kind": "enum_value", + "name": "AssetUploadComplete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65870" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AssetUploadRequest", + "kind": "enum_value", + "name": "AssetUploadRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65869" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AtomicPassObject", + "kind": "enum_value", + "name": "AtomicPassObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196636" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AttachedSound", + "kind": "enum_value", + "name": "AttachedSound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131085" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AttachedSoundGainChange", + "kind": "enum_value", + "name": "AttachedSoundGainChange", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131086" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarAnimation", + "kind": "enum_value", + "name": "AvatarAnimation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196628" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarAppearance", + "kind": "enum_value", + "name": "AvatarAppearance", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65694" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarClassifiedReply", + "kind": "enum_value", + "name": "AvatarClassifiedReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65578" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarGroupsReply", + "kind": "enum_value", + "name": "AvatarGroupsReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65709" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarInterestsReply", + "kind": "enum_value", + "name": "AvatarInterestsReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65708" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarInterestsUpdate", + "kind": "enum_value", + "name": "AvatarInterestsUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65711" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarNotesReply", + "kind": "enum_value", + "name": "AvatarNotesReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65712" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarNotesUpdate", + "kind": "enum_value", + "name": "AvatarNotesUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65713" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPickerReply", + "kind": "enum_value", + "name": "AvatarPickerReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65564" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPickerRequest", + "kind": "enum_value", + "name": "AvatarPickerRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65562" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPickerRequestBackend", + "kind": "enum_value", + "name": "AvatarPickerRequestBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65563" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPicksReply", + "kind": "enum_value", + "name": "AvatarPicksReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65714" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPropertiesReply", + "kind": "enum_value", + "name": "AvatarPropertiesReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65707" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPropertiesRequest", + "kind": "enum_value", + "name": "AvatarPropertiesRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65705" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPropertiesRequestBackend", + "kind": "enum_value", + "name": "AvatarPropertiesRequestBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65706" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarPropertiesUpdate", + "kind": "enum_value", + "name": "AvatarPropertiesUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65710" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarSitResponse", + "kind": "enum_value", + "name": "AvatarSitResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196629" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.AvatarTextureUpdate", + "kind": "enum_value", + "name": "AvatarTextureUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65540" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.BulkUpdateInventory", + "kind": "enum_value", + "name": "BulkUpdateInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65817" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.BuyObjectInventory", + "kind": "enum_value", + "name": "BuyObjectInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65639" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CameraConstraint", + "kind": "enum_value", + "name": "CameraConstraint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196630" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CancelAuction", + "kind": "enum_value", + "name": "CancelAuction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65768" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChangeInventoryItemFlags", + "kind": "enum_value", + "name": "ChangeInventoryItemFlags", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65807" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChangeUserRights", + "kind": "enum_value", + "name": "ChangeUserRights", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65857" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChatFromSimulator", + "kind": "enum_value", + "name": "ChatFromSimulator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65675" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChatFromViewer", + "kind": "enum_value", + "name": "ChatFromViewer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65616" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChatPass", + "kind": "enum_value", + "name": "ChatPass", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65775" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CheckParcelAuctions", + "kind": "enum_value", + "name": "CheckParcelAuctions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65769" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CheckParcelSales", + "kind": "enum_value", + "name": "CheckParcelSales", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65761" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChildAgentAlive", + "kind": "enum_value", + "name": "ChildAgentAlive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196634" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChildAgentDying", + "kind": "enum_value", + "name": "ChildAgentDying", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65776" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChildAgentPositionUpdate", + "kind": "enum_value", + "name": "ChildAgentPositionUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196635" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChildAgentUnknown", + "kind": "enum_value", + "name": "ChildAgentUnknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65777" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ChildAgentUpdate", + "kind": "enum_value", + "name": "ChildAgentUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196633" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ClassifiedDelete", + "kind": "enum_value", + "name": "ClassifiedDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65582" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ClassifiedGodDelete", + "kind": "enum_value", + "name": "ClassifiedGodDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65583" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ClassifiedInfoReply", + "kind": "enum_value", + "name": "ClassifiedInfoReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65580" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ClassifiedInfoRequest", + "kind": "enum_value", + "name": "ClassifiedInfoRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65579" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ClassifiedInfoUpdate", + "kind": "enum_value", + "name": "ClassifiedInfoUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65581" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ClearFollowCamProperties", + "kind": "enum_value", + "name": "ClearFollowCamProperties", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65696" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CloseCircuit", + "kind": "enum_value", + "name": "CloseCircuit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131069" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CoarseLocationUpdate", + "kind": "enum_value", + "name": "CoarseLocationUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131078" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CompleteAgentMovement", + "kind": "enum_value", + "name": "CompleteAgentMovement", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65785" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CompleteAuction", + "kind": "enum_value", + "name": "CompleteAuction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65767" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CompletePingCheck", + "kind": "enum_value", + "name": "CompletePingCheck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196610" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ConfirmAuctionStart", + "kind": "enum_value", + "name": "ConfirmAuctionStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65766" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ConfirmEnableSimulator", + "kind": "enum_value", + "name": "ConfirmEnableSimulator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131080" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ConfirmXferPacket", + "kind": "enum_value", + "name": "ConfirmXferPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196627" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CopyInventoryFromNotecard", + "kind": "enum_value", + "name": "CopyInventoryFromNotecard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65801" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CopyInventoryItem", + "kind": "enum_value", + "name": "CopyInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65805" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateGroupReply", + "kind": "enum_value", + "name": "CreateGroupReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65876" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateGroupRequest", + "kind": "enum_value", + "name": "CreateGroupRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65875" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateGroupRequestExtended", + "kind": "enum_value", + "name": "CreateGroupRequestExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65965" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateInventoryFolder", + "kind": "enum_value", + "name": "CreateInventoryFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65809" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateInventoryItem", + "kind": "enum_value", + "name": "CreateInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65841" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateLandmarkForEvent", + "kind": "enum_value", + "name": "CreateLandmarkForEvent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65842" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateNewOutfitAttachments", + "kind": "enum_value", + "name": "CreateNewOutfitAttachments", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65934" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CreateTrustedCircuit", + "kind": "enum_value", + "name": "CreateTrustedCircuit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65928" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.CrossedRegion", + "kind": "enum_value", + "name": "CrossedRegion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131079" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DataHomeLocationReply", + "kind": "enum_value", + "name": "DataHomeLocationReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65604" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DataHomeLocationRequest", + "kind": "enum_value", + "name": "DataHomeLocationRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65603" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DataServerLogout", + "kind": "enum_value", + "name": "DataServerLogout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65787" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DeRezAck", + "kind": "enum_value", + "name": "DeRezAck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65828" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DeRezObject", + "kind": "enum_value", + "name": "DeRezObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65827" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DeactivateGestures", + "kind": "enum_value", + "name": "DeactivateGestures", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65853" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DeclineCallingCard", + "kind": "enum_value", + "name": "DeclineCallingCard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65839" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DeclineFriendship", + "kind": "enum_value", + "name": "DeclineFriendship", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65834" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DenyTrustedCircuit", + "kind": "enum_value", + "name": "DenyTrustedCircuit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65929" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DerezContainer", + "kind": "enum_value", + "name": "DerezContainer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65640" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DetachAttachmentIntoInv", + "kind": "enum_value", + "name": "DetachAttachmentIntoInv", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65933" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirClassifiedQuery", + "kind": "enum_value", + "name": "DirClassifiedQuery", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65575" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirClassifiedQueryBackend", + "kind": "enum_value", + "name": "DirClassifiedQueryBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirClassifiedReply", + "kind": "enum_value", + "name": "DirClassifiedReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65577" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirEventsReply", + "kind": "enum_value", + "name": "DirEventsReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65573" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirFindQuery", + "kind": "enum_value", + "name": "DirFindQuery", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65567" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirFindQueryBackend", + "kind": "enum_value", + "name": "DirFindQueryBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65568" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirGroupsReply", + "kind": "enum_value", + "name": "DirGroupsReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65574" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirLandQuery", + "kind": "enum_value", + "name": "DirLandQuery", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65584" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirLandQueryBackend", + "kind": "enum_value", + "name": "DirLandQueryBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65585" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirLandReply", + "kind": "enum_value", + "name": "DirLandReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65586" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPeopleReply", + "kind": "enum_value", + "name": "DirPeopleReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65572" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPlacesQuery", + "kind": "enum_value", + "name": "DirPlacesQuery", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65569" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPlacesQueryBackend", + "kind": "enum_value", + "name": "DirPlacesQueryBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65570" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPlacesReply", + "kind": "enum_value", + "name": "DirPlacesReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65571" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPopularQuery", + "kind": "enum_value", + "name": "DirPopularQuery", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65587" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPopularQueryBackend", + "kind": "enum_value", + "name": "DirPopularQueryBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65588" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DirPopularReply", + "kind": "enum_value", + "name": "DirPopularReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65589" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.DisableSimulator", + "kind": "enum_value", + "name": "DisableSimulator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65688" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EconomyData", + "kind": "enum_value", + "name": "EconomyData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65561" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EconomyDataRequest", + "kind": "enum_value", + "name": "EconomyDataRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65560" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EdgeDataPacket", + "kind": "enum_value", + "name": "EdgeDataPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196632" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EjectGroupMemberReply", + "kind": "enum_value", + "name": "EjectGroupMemberReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65882" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EjectGroupMemberRequest", + "kind": "enum_value", + "name": "EjectGroupMemberRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65881" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EjectUser", + "kind": "enum_value", + "name": "EjectUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65703" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EmailMessageReply", + "kind": "enum_value", + "name": "EmailMessageReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65872" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EmailMessageRequest", + "kind": "enum_value", + "name": "EmailMessageRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65871" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EnableSimulator", + "kind": "enum_value", + "name": "EnableSimulator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65687" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.Error", + "kind": "enum_value", + "name": "Error", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65959" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EstateCovenantReply", + "kind": "enum_value", + "name": "EstateCovenantReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65740" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EstateCovenantRequest", + "kind": "enum_value", + "name": "EstateCovenantRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65739" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EstateOwnerMessage", + "kind": "enum_value", + "name": "EstateOwnerMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65796" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventGodDelete", + "kind": "enum_value", + "name": "EventGodDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65719" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventInfoReply", + "kind": "enum_value", + "name": "EventInfoReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65716" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventInfoRequest", + "kind": "enum_value", + "name": "EventInfoRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65715" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventLocationReply", + "kind": "enum_value", + "name": "EventLocationReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65844" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventLocationRequest", + "kind": "enum_value", + "name": "EventLocationRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65843" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventNotificationAddRequest", + "kind": "enum_value", + "name": "EventNotificationAddRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65717" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.EventNotificationRemoveRequest", + "kind": "enum_value", + "name": "EventNotificationRemoveRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65718" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FeatureDisabled", + "kind": "enum_value", + "name": "FeatureDisabled", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65555" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FetchInventory", + "kind": "enum_value", + "name": "FetchInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65815" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FetchInventoryDescendents", + "kind": "enum_value", + "name": "FetchInventoryDescendents", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65813" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FetchInventoryReply", + "kind": "enum_value", + "name": "FetchInventoryReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65816" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FindAgent", + "kind": "enum_value", + "name": "FindAgent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65792" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ForceObjectSelect", + "kind": "enum_value", + "name": "ForceObjectSelect", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65741" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ForceScriptControlRelease", + "kind": "enum_value", + "name": "ForceScriptControlRelease", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65728" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FormFriendship", + "kind": "enum_value", + "name": "FormFriendship", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65835" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.FreezeUser", + "kind": "enum_value", + "name": "FreezeUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65704" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GameControlInput", + "kind": "enum_value", + "name": "GameControlInput", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196640" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GenericMessage", + "kind": "enum_value", + "name": "GenericMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65797" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GenericStreamingMessage", + "kind": "enum_value", + "name": "GenericStreamingMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196639" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GetScriptRunning", + "kind": "enum_value", + "name": "GetScriptRunning", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65779" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GodKickUser", + "kind": "enum_value", + "name": "GodKickUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65701" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GodUpdateRegionInfo", + "kind": "enum_value", + "name": "GodUpdateRegionInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65679" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GodlikeMessage", + "kind": "enum_value", + "name": "GodlikeMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65795" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GrantGodlikePowers", + "kind": "enum_value", + "name": "GrantGodlikePowers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65794" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GrantUserRights", + "kind": "enum_value", + "name": "GrantUserRights", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65856" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupAccountDetailsReply", + "kind": "enum_value", + "name": "GroupAccountDetailsReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65892" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupAccountDetailsRequest", + "kind": "enum_value", + "name": "GroupAccountDetailsRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65891" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupAccountSummaryReply", + "kind": "enum_value", + "name": "GroupAccountSummaryReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65890" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupAccountSummaryRequest", + "kind": "enum_value", + "name": "GroupAccountSummaryRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65889" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupAccountTransactionsReply", + "kind": "enum_value", + "name": "GroupAccountTransactionsReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65894" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupAccountTransactionsRequest", + "kind": "enum_value", + "name": "GroupAccountTransactionsRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65893" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupActiveProposalItemReply", + "kind": "enum_value", + "name": "GroupActiveProposalItemReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65896" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupActiveProposalsRequest", + "kind": "enum_value", + "name": "GroupActiveProposalsRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65895" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupDataUpdate", + "kind": "enum_value", + "name": "GroupDataUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65924" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupMembersReply", + "kind": "enum_value", + "name": "GroupMembersReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65903" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupMembersRequest", + "kind": "enum_value", + "name": "GroupMembersRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65902" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupNoticeAdd", + "kind": "enum_value", + "name": "GroupNoticeAdd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65597" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupNoticeRequest", + "kind": "enum_value", + "name": "GroupNoticeRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65596" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupNoticesListReply", + "kind": "enum_value", + "name": "GroupNoticesListReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65595" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupNoticesListRequest", + "kind": "enum_value", + "name": "GroupNoticesListRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65594" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupProfileReply", + "kind": "enum_value", + "name": "GroupProfileReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65888" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupProfileRequest", + "kind": "enum_value", + "name": "GroupProfileRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65887" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupProposalBallot", + "kind": "enum_value", + "name": "GroupProposalBallot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65900" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupRoleChanges", + "kind": "enum_value", + "name": "GroupRoleChanges", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65878" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupRoleDataReply", + "kind": "enum_value", + "name": "GroupRoleDataReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65908" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupRoleDataRequest", + "kind": "enum_value", + "name": "GroupRoleDataRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65907" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupRoleMembersReply", + "kind": "enum_value", + "name": "GroupRoleMembersReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65910" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupRoleMembersRequest", + "kind": "enum_value", + "name": "GroupRoleMembersRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65909" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupRoleUpdate", + "kind": "enum_value", + "name": "GroupRoleUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65914" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupTitleUpdate", + "kind": "enum_value", + "name": "GroupTitleUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65913" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupTitlesReply", + "kind": "enum_value", + "name": "GroupTitlesReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65912" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupTitlesRequest", + "kind": "enum_value", + "name": "GroupTitlesRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65911" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupVoteHistoryItemReply", + "kind": "enum_value", + "name": "GroupVoteHistoryItemReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65898" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.GroupVoteHistoryRequest", + "kind": "enum_value", + "name": "GroupVoteHistoryRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65897" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.HealthMessage", + "kind": "enum_value", + "name": "HealthMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65674" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ImageData", + "kind": "enum_value", + "name": "ImageData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196617" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ImageNotInDatabase", + "kind": "enum_value", + "name": "ImageNotInDatabase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65622" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ImagePacket", + "kind": "enum_value", + "name": "ImagePacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196618" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ImprovedInstantMessage", + "kind": "enum_value", + "name": "ImprovedInstantMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65790" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ImprovedTerseObjectUpdate", + "kind": "enum_value", + "name": "ImprovedTerseObjectUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196623" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.InitiateDownload", + "kind": "enum_value", + "name": "InitiateDownload", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65939" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.InternalScriptMail", + "kind": "enum_value", + "name": "InternalScriptMail", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131088" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.InventoryAssetResponse", + "kind": "enum_value", + "name": "InventoryAssetResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65819" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.InventoryDescendents", + "kind": "enum_value", + "name": "InventoryDescendents", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65814" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.InviteGroupRequest", + "kind": "enum_value", + "name": "InviteGroupRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65885" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.InviteGroupResponse", + "kind": "enum_value", + "name": "InviteGroupResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65886" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.JoinGroupReply", + "kind": "enum_value", + "name": "JoinGroupReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65880" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.JoinGroupRequest", + "kind": "enum_value", + "name": "JoinGroupRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65879" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.JoinGroupRequestExtended", + "kind": "enum_value", + "name": "JoinGroupRequestExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65964" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.KickUser", + "kind": "enum_value", + "name": "KickUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65699" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.KickUserAck", + "kind": "enum_value", + "name": "KickUserAck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65700" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.KillChildAgents", + "kind": "enum_value", + "name": "KillChildAgents", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65778" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.KillObject", + "kind": "enum_value", + "name": "KillObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196624" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LandStatReply", + "kind": "enum_value", + "name": "LandStatReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65958" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LandStatRequest", + "kind": "enum_value", + "name": "LandStatRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65957" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LargeGenericMessage", + "kind": "enum_value", + "name": "LargeGenericMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65966" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LayerData", + "kind": "enum_value", + "name": "LayerData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196619" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LeaveGroupReply", + "kind": "enum_value", + "name": "LeaveGroupReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65884" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LeaveGroupRequest", + "kind": "enum_value", + "name": "LeaveGroupRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65883" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LinkInventoryItem", + "kind": "enum_value", + "name": "LinkInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65962" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LiveHelpGroupReply", + "kind": "enum_value", + "name": "LiveHelpGroupReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65916" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LiveHelpGroupRequest", + "kind": "enum_value", + "name": "LiveHelpGroupRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65915" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LoadURL", + "kind": "enum_value", + "name": "LoadURL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65730" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LogDwellTime", + "kind": "enum_value", + "name": "LogDwellTime", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65554" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LogFailedMoneyTransaction", + "kind": "enum_value", + "name": "LogFailedMoneyTransaction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65556" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LogParcelChanges", + "kind": "enum_value", + "name": "LogParcelChanges", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65760" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LogTextMessage", + "kind": "enum_value", + "name": "LogTextMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65927" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LogoutReply", + "kind": "enum_value", + "name": "LogoutReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65789" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.LogoutRequest", + "kind": "enum_value", + "name": "LogoutRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65788" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapBlockReply", + "kind": "enum_value", + "name": "MapBlockReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65945" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapBlockRequest", + "kind": "enum_value", + "name": "MapBlockRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65943" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapItemReply", + "kind": "enum_value", + "name": "MapItemReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65947" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapItemRequest", + "kind": "enum_value", + "name": "MapItemRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65946" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapLayerReply", + "kind": "enum_value", + "name": "MapLayerReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65942" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapLayerRequest", + "kind": "enum_value", + "name": "MapLayerRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65941" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MapNameRequest", + "kind": "enum_value", + "name": "MapNameRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65944" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MeanCollisionAlert", + "kind": "enum_value", + "name": "MeanCollisionAlert", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65672" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MergeParcel", + "kind": "enum_value", + "name": "MergeParcel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65759" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ModifyLand", + "kind": "enum_value", + "name": "ModifyLand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65660" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoneyBalanceReply", + "kind": "enum_value", + "name": "MoneyBalanceReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65850" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoneyBalanceRequest", + "kind": "enum_value", + "name": "MoneyBalanceRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65849" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoneyTransferBackend", + "kind": "enum_value", + "name": "MoneyTransferBackend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65848" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoneyTransferRequest", + "kind": "enum_value", + "name": "MoneyTransferRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65847" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoveInventoryFolder", + "kind": "enum_value", + "name": "MoveInventoryFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65811" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoveInventoryItem", + "kind": "enum_value", + "name": "MoveInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65804" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MoveTaskInventory", + "kind": "enum_value", + "name": "MoveTaskInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65824" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MultipleObjectUpdate", + "kind": "enum_value", + "name": "MultipleObjectUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131074" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MuteListRequest", + "kind": "enum_value", + "name": "MuteListRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65798" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.MuteListUpdate", + "kind": "enum_value", + "name": "MuteListUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65854" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.NameValuePair", + "kind": "enum_value", + "name": "NameValuePair", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65865" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.NearestLandingRegionReply", + "kind": "enum_value", + "name": "NearestLandingRegionReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65681" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.NearestLandingRegionRequest", + "kind": "enum_value", + "name": "NearestLandingRegionRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65680" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.NearestLandingRegionUpdated", + "kind": "enum_value", + "name": "NearestLandingRegionUpdated", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65682" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.NeighborList", + "kind": "enum_value", + "name": "NeighborList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196611" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.NetTest", + "kind": "enum_value", + "name": "NetTest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65862" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectAdd", + "kind": "enum_value", + "name": "ObjectAdd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131073" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectAnimation", + "kind": "enum_value", + "name": "ObjectAnimation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196638" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectAttach", + "kind": "enum_value", + "name": "ObjectAttach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65648" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectBuy", + "kind": "enum_value", + "name": "ObjectBuy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65638" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectBypassModUpdate", + "kind": "enum_value", + "name": "ObjectBypassModUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65967" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectCategory", + "kind": "enum_value", + "name": "ObjectCategory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65645" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectClickAction", + "kind": "enum_value", + "name": "ObjectClickAction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65631" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDeGrab", + "kind": "enum_value", + "name": "ObjectDeGrab", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65655" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDelete", + "kind": "enum_value", + "name": "ObjectDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65625" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDelink", + "kind": "enum_value", + "name": "ObjectDelink", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65652" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDescription", + "kind": "enum_value", + "name": "ObjectDescription", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65644" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDeselect", + "kind": "enum_value", + "name": "ObjectDeselect", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65647" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDetach", + "kind": "enum_value", + "name": "ObjectDetach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65649" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDrop", + "kind": "enum_value", + "name": "ObjectDrop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65650" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDuplicate", + "kind": "enum_value", + "name": "ObjectDuplicate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65626" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectDuplicateOnRay", + "kind": "enum_value", + "name": "ObjectDuplicateOnRay", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65627" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectExportSelected", + "kind": "enum_value", + "name": "ObjectExportSelected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65659" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectExtraParams", + "kind": "enum_value", + "name": "ObjectExtraParams", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65635" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectFlagUpdate", + "kind": "enum_value", + "name": "ObjectFlagUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65630" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectGrab", + "kind": "enum_value", + "name": "ObjectGrab", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65653" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectGrabUpdate", + "kind": "enum_value", + "name": "ObjectGrabUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65654" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectGroup", + "kind": "enum_value", + "name": "ObjectGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65637" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectImage", + "kind": "enum_value", + "name": "ObjectImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65632" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectIncludeInSearch", + "kind": "enum_value", + "name": "ObjectIncludeInSearch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65960" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectLink", + "kind": "enum_value", + "name": "ObjectLink", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65651" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectMaterial", + "kind": "enum_value", + "name": "ObjectMaterial", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65633" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectName", + "kind": "enum_value", + "name": "ObjectName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65643" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectOwner", + "kind": "enum_value", + "name": "ObjectOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65636" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectPermissions", + "kind": "enum_value", + "name": "ObjectPermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65641" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectPosition", + "kind": "enum_value", + "name": "ObjectPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131076" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectProperties", + "kind": "enum_value", + "name": "ObjectProperties", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131081" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectPropertiesFamily", + "kind": "enum_value", + "name": "ObjectPropertiesFamily", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131082" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectRotation", + "kind": "enum_value", + "name": "ObjectRotation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65629" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectSaleInfo", + "kind": "enum_value", + "name": "ObjectSaleInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65642" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectScale", + "kind": "enum_value", + "name": "ObjectScale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65628" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectSelect", + "kind": "enum_value", + "name": "ObjectSelect", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65646" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectShape", + "kind": "enum_value", + "name": "ObjectShape", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65634" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectSpinStart", + "kind": "enum_value", + "name": "ObjectSpinStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65656" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectSpinStop", + "kind": "enum_value", + "name": "ObjectSpinStop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65658" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectSpinUpdate", + "kind": "enum_value", + "name": "ObjectSpinUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65657" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectUpdate", + "kind": "enum_value", + "name": "ObjectUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196620" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectUpdateCached", + "kind": "enum_value", + "name": "ObjectUpdateCached", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196622" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ObjectUpdateCompressed", + "kind": "enum_value", + "name": "ObjectUpdateCompressed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196621" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.OfferCallingCard", + "kind": "enum_value", + "name": "OfferCallingCard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65837" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.OfflineNotification", + "kind": "enum_value", + "name": "OfflineNotification", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65859" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.OnlineNotification", + "kind": "enum_value", + "name": "OnlineNotification", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65858" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.OpenCircuit", + "kind": "enum_value", + "name": "OpenCircuit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131068" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PacketAck", + "kind": "enum_value", + "name": "PacketAck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131067" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelAccessListReply", + "kind": "enum_value", + "name": "ParcelAccessListReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65752" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelAccessListRequest", + "kind": "enum_value", + "name": "ParcelAccessListRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65751" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelAccessListUpdate", + "kind": "enum_value", + "name": "ParcelAccessListUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65753" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelAuctions", + "kind": "enum_value", + "name": "ParcelAuctions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65770" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelBuy", + "kind": "enum_value", + "name": "ParcelBuy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65749" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelBuyPass", + "kind": "enum_value", + "name": "ParcelBuyPass", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65742" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelClaim", + "kind": "enum_value", + "name": "ParcelClaim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65745" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelDeedToGroup", + "kind": "enum_value", + "name": "ParcelDeedToGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65743" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelDisableObjects", + "kind": "enum_value", + "name": "ParcelDisableObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65737" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelDivide", + "kind": "enum_value", + "name": "ParcelDivide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65747" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelDwellReply", + "kind": "enum_value", + "name": "ParcelDwellReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65755" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelDwellRequest", + "kind": "enum_value", + "name": "ParcelDwellRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65754" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelGodForceOwner", + "kind": "enum_value", + "name": "ParcelGodForceOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65750" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelGodMarkAsContent", + "kind": "enum_value", + "name": "ParcelGodMarkAsContent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65763" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelInfoReply", + "kind": "enum_value", + "name": "ParcelInfoReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65591" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelInfoRequest", + "kind": "enum_value", + "name": "ParcelInfoRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65590" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelJoin", + "kind": "enum_value", + "name": "ParcelJoin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65746" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelMediaCommandMessage", + "kind": "enum_value", + "name": "ParcelMediaCommandMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65955" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelMediaUpdate", + "kind": "enum_value", + "name": "ParcelMediaUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65956" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelObjectOwnersReply", + "kind": "enum_value", + "name": "ParcelObjectOwnersReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65593" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelObjectOwnersRequest", + "kind": "enum_value", + "name": "ParcelObjectOwnersRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65592" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelOverlay", + "kind": "enum_value", + "name": "ParcelOverlay", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65732" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelProperties", + "kind": "enum_value", + "name": "ParcelProperties", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196631" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelPropertiesRequest", + "kind": "enum_value", + "name": "ParcelPropertiesRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131083" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelPropertiesRequestByID", + "kind": "enum_value", + "name": "ParcelPropertiesRequestByID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65733" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelPropertiesUpdate", + "kind": "enum_value", + "name": "ParcelPropertiesUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65734" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelReclaim", + "kind": "enum_value", + "name": "ParcelReclaim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65744" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelRelease", + "kind": "enum_value", + "name": "ParcelRelease", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65748" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelRename", + "kind": "enum_value", + "name": "ParcelRename", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65938" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelReturnObjects", + "kind": "enum_value", + "name": "ParcelReturnObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65735" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelSales", + "kind": "enum_value", + "name": "ParcelSales", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65762" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelSelectObjects", + "kind": "enum_value", + "name": "ParcelSelectObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65738" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ParcelSetOtherCleanTime", + "kind": "enum_value", + "name": "ParcelSetOtherCleanTime", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65736" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PayPriceReply", + "kind": "enum_value", + "name": "PayPriceReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65698" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PickDelete", + "kind": "enum_value", + "name": "PickDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65722" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PickGodDelete", + "kind": "enum_value", + "name": "PickGodDelete", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65723" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PickInfoReply", + "kind": "enum_value", + "name": "PickInfoReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65720" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PickInfoUpdate", + "kind": "enum_value", + "name": "PickInfoUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65721" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PlacesQuery", + "kind": "enum_value", + "name": "PlacesQuery", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65565" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PlacesReply", + "kind": "enum_value", + "name": "PlacesReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65566" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PreloadSound", + "kind": "enum_value", + "name": "PreloadSound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131087" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.PurgeInventoryDescendents", + "kind": "enum_value", + "name": "PurgeInventoryDescendents", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65821" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RebakeAvatarTextures", + "kind": "enum_value", + "name": "RebakeAvatarTextures", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65623" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.Redo", + "kind": "enum_value", + "name": "Redo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65612" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionHandleRequest", + "kind": "enum_value", + "name": "RegionHandleRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65845" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionHandshake", + "kind": "enum_value", + "name": "RegionHandshake", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65684" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionHandshakeReply", + "kind": "enum_value", + "name": "RegionHandshakeReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65685" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionIDAndHandleReply", + "kind": "enum_value", + "name": "RegionIDAndHandleReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65846" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionInfo", + "kind": "enum_value", + "name": "RegionInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65678" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionPresenceRequestByHandle", + "kind": "enum_value", + "name": "RegionPresenceRequestByHandle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65551" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionPresenceRequestByRegionID", + "kind": "enum_value", + "name": "RegionPresenceRequestByRegionID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65550" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RegionPresenceResponse", + "kind": "enum_value", + "name": "RegionPresenceResponse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65552" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveAttachment", + "kind": "enum_value", + "name": "RemoveAttachment", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65868" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveInventoryFolder", + "kind": "enum_value", + "name": "RemoveInventoryFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65812" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveInventoryItem", + "kind": "enum_value", + "name": "RemoveInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65806" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveInventoryObjects", + "kind": "enum_value", + "name": "RemoveInventoryObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65820" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveMuteListEntry", + "kind": "enum_value", + "name": "RemoveMuteListEntry", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65800" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveNameValuePair", + "kind": "enum_value", + "name": "RemoveNameValuePair", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65866" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveParcel", + "kind": "enum_value", + "name": "RemoveParcel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65758" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RemoveTaskInventory", + "kind": "enum_value", + "name": "RemoveTaskInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65823" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ReplyTaskInventory", + "kind": "enum_value", + "name": "ReplyTaskInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65826" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ReportAutosaveCrash", + "kind": "enum_value", + "name": "ReportAutosaveCrash", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65664" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestGodlikePowers", + "kind": "enum_value", + "name": "RequestGodlikePowers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65793" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestImage", + "kind": "enum_value", + "name": "RequestImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196616" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestInventoryAsset", + "kind": "enum_value", + "name": "RequestInventoryAsset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65818" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestMultipleObjects", + "kind": "enum_value", + "name": "RequestMultipleObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131075" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestObjectPropertiesFamily", + "kind": "enum_value", + "name": "RequestObjectPropertiesFamily", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131077" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestParcelTransfer", + "kind": "enum_value", + "name": "RequestParcelTransfer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65756" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestPayPrice", + "kind": "enum_value", + "name": "RequestPayPrice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65697" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestRegionInfo", + "kind": "enum_value", + "name": "RequestRegionInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65677" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestTaskInventory", + "kind": "enum_value", + "name": "RequestTaskInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65825" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestTrustedCircuit", + "kind": "enum_value", + "name": "RequestTrustedCircuit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65930" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RequestXfer", + "kind": "enum_value", + "name": "RequestXfer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65692" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RetrieveIMsExtended", + "kind": "enum_value", + "name": "RetrieveIMsExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65963" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RetrieveInstantMessages", + "kind": "enum_value", + "name": "RetrieveInstantMessages", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65791" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RevokePermissions", + "kind": "enum_value", + "name": "RevokePermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65729" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RezMultipleAttachmentsFromInv", + "kind": "enum_value", + "name": "RezMultipleAttachmentsFromInv", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65932" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RezObject", + "kind": "enum_value", + "name": "RezObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65829" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RezObjectFromNotecard", + "kind": "enum_value", + "name": "RezObjectFromNotecard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65830" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RezRestoreToWorld", + "kind": "enum_value", + "name": "RezRestoreToWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65961" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RezScript", + "kind": "enum_value", + "name": "RezScript", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65840" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RezSingleAttachmentFromInv", + "kind": "enum_value", + "name": "RezSingleAttachmentFromInv", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65931" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RoutedMoneyBalanceReply", + "kind": "enum_value", + "name": "RoutedMoneyBalanceReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65851" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RpcChannelReply", + "kind": "enum_value", + "name": "RpcChannelReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65950" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RpcChannelRequest", + "kind": "enum_value", + "name": "RpcChannelRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65949" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RpcScriptReplyInbound", + "kind": "enum_value", + "name": "RpcScriptReplyInbound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65953" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RpcScriptRequestInbound", + "kind": "enum_value", + "name": "RpcScriptRequestInbound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65951" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.RpcScriptRequestInboundForward", + "kind": "enum_value", + "name": "RpcScriptRequestInboundForward", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65952" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SaveAssetIntoInventory", + "kind": "enum_value", + "name": "SaveAssetIntoInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65808" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptAnswerYes", + "kind": "enum_value", + "name": "ScriptAnswerYes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65668" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptControlChange", + "kind": "enum_value", + "name": "ScriptControlChange", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65725" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptDataReply", + "kind": "enum_value", + "name": "ScriptDataReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65874" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptDataRequest", + "kind": "enum_value", + "name": "ScriptDataRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65873" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptDialog", + "kind": "enum_value", + "name": "ScriptDialog", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65726" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptDialogReply", + "kind": "enum_value", + "name": "ScriptDialogReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65727" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptMailRegistration", + "kind": "enum_value", + "name": "ScriptMailRegistration", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65954" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptQuestion", + "kind": "enum_value", + "name": "ScriptQuestion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65724" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptReset", + "kind": "enum_value", + "name": "ScriptReset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65782" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptRunningReply", + "kind": "enum_value", + "name": "ScriptRunningReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65780" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptSensorReply", + "kind": "enum_value", + "name": "ScriptSensorReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65784" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptSensorRequest", + "kind": "enum_value", + "name": "ScriptSensorRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65783" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ScriptTeleportRequest", + "kind": "enum_value", + "name": "ScriptTeleportRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65731" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SendPostcard", + "kind": "enum_value", + "name": "SendPostcard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65948" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SendXferPacket", + "kind": "enum_value", + "name": "SendXferPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196626" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetAlwaysRun", + "kind": "enum_value", + "name": "SetAlwaysRun", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65624" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetCPURatio", + "kind": "enum_value", + "name": "SetCPURatio", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65863" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetFollowCamProperties", + "kind": "enum_value", + "name": "SetFollowCamProperties", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65695" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetGroupAcceptNotices", + "kind": "enum_value", + "name": "SetGroupAcceptNotices", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65906" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetGroupContribution", + "kind": "enum_value", + "name": "SetGroupContribution", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65905" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetScriptRunning", + "kind": "enum_value", + "name": "SetScriptRunning", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65781" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetSimPresenceInDatabase", + "kind": "enum_value", + "name": "SetSimPresenceInDatabase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65559" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetSimStatusInDatabase", + "kind": "enum_value", + "name": "SetSimStatusInDatabase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65558" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetStartLocation", + "kind": "enum_value", + "name": "SetStartLocation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65861" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SetStartLocationRequest", + "kind": "enum_value", + "name": "SetStartLocationRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65860" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimCrashed", + "kind": "enum_value", + "name": "SimCrashed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65864" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimStats", + "kind": "enum_value", + "name": "SimStats", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65676" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimStatus", + "kind": "enum_value", + "name": "SimStatus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131084" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimWideDeletes", + "kind": "enum_value", + "name": "SimWideDeletes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65665" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorLoad", + "kind": "enum_value", + "name": "SimulatorLoad", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65548" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorMapUpdate", + "kind": "enum_value", + "name": "SimulatorMapUpdate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65541" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorPresentAtLocation", + "kind": "enum_value", + "name": "SimulatorPresentAtLocation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65547" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorReady", + "kind": "enum_value", + "name": "SimulatorReady", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65545" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorSetMap", + "kind": "enum_value", + "name": "SimulatorSetMap", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65542" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorShutdownRequest", + "kind": "enum_value", + "name": "SimulatorShutdownRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65549" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SimulatorViewerTimeMessage", + "kind": "enum_value", + "name": "SimulatorViewerTimeMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65686" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SoundTrigger", + "kind": "enum_value", + "name": "SoundTrigger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196637" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.StartAuction", + "kind": "enum_value", + "name": "StartAuction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65765" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.StartGroupProposal", + "kind": "enum_value", + "name": "StartGroupProposal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65899" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.StartLure", + "kind": "enum_value", + "name": "StartLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65606" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.StartPingCheck", + "kind": "enum_value", + "name": "StartPingCheck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196609" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.StateSave", + "kind": "enum_value", + "name": "StateSave", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65663" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SubscribeLoad", + "kind": "enum_value", + "name": "SubscribeLoad", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65543" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SystemKickUser", + "kind": "enum_value", + "name": "SystemKickUser", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65702" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.SystemMessage", + "kind": "enum_value", + "name": "SystemMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65940" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TallyVotes", + "kind": "enum_value", + "name": "TallyVotes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65901" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TelehubInfo", + "kind": "enum_value", + "name": "TelehubInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65546" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportCancel", + "kind": "enum_value", + "name": "TeleportCancel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65608" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportFailed", + "kind": "enum_value", + "name": "TeleportFailed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65610" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportFinish", + "kind": "enum_value", + "name": "TeleportFinish", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65605" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportLandingStatusChanged", + "kind": "enum_value", + "name": "TeleportLandingStatusChanged", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65683" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportLandmarkRequest", + "kind": "enum_value", + "name": "TeleportLandmarkRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65601" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportLocal", + "kind": "enum_value", + "name": "TeleportLocal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65600" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportLocationRequest", + "kind": "enum_value", + "name": "TeleportLocationRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65599" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportLureRequest", + "kind": "enum_value", + "name": "TeleportLureRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65607" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportProgress", + "kind": "enum_value", + "name": "TeleportProgress", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65602" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportRequest", + "kind": "enum_value", + "name": "TeleportRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65598" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TeleportStart", + "kind": "enum_value", + "name": "TeleportStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65609" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TerminateFriendship", + "kind": "enum_value", + "name": "TerminateFriendship", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65836" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TestMessage", + "kind": "enum_value", + "name": "TestMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65537" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TrackAgent", + "kind": "enum_value", + "name": "TrackAgent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65666" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TransferAbort", + "kind": "enum_value", + "name": "TransferAbort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65691" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TransferInfo", + "kind": "enum_value", + "name": "TransferInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65690" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TransferInventory", + "kind": "enum_value", + "name": "TransferInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65831" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TransferInventoryAck", + "kind": "enum_value", + "name": "TransferInventoryAck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65832" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TransferPacket", + "kind": "enum_value", + "name": "TransferPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "196625" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.TransferRequest", + "kind": "enum_value", + "name": "TransferRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65689" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UUIDGroupNameReply", + "kind": "enum_value", + "name": "UUIDGroupNameReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65774" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UUIDGroupNameRequest", + "kind": "enum_value", + "name": "UUIDGroupNameRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65773" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UUIDNameReply", + "kind": "enum_value", + "name": "UUIDNameReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65772" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UUIDNameRequest", + "kind": "enum_value", + "name": "UUIDNameRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65771" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.Undo", + "kind": "enum_value", + "name": "Undo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65611" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UndoLand", + "kind": "enum_value", + "name": "UndoLand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65613" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UnsubscribeLoad", + "kind": "enum_value", + "name": "UnsubscribeLoad", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65544" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateAttachment", + "kind": "enum_value", + "name": "UpdateAttachment", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65867" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateCreateInventoryItem", + "kind": "enum_value", + "name": "UpdateCreateInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65803" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateGroupInfo", + "kind": "enum_value", + "name": "UpdateGroupInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65877" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateInventoryFolder", + "kind": "enum_value", + "name": "UpdateInventoryFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65810" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateInventoryItem", + "kind": "enum_value", + "name": "UpdateInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65802" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateMuteListEntry", + "kind": "enum_value", + "name": "UpdateMuteListEntry", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65799" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateParcel", + "kind": "enum_value", + "name": "UpdateParcel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65757" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateSimulator", + "kind": "enum_value", + "name": "UpdateSimulator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65553" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateTaskInventory", + "kind": "enum_value", + "name": "UpdateTaskInventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65822" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UpdateUserInfo", + "kind": "enum_value", + "name": "UpdateUserInfo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65937" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UseCachedMuteList", + "kind": "enum_value", + "name": "UseCachedMuteList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65855" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UseCircuitCode", + "kind": "enum_value", + "name": "UseCircuitCode", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65539" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UserInfoReply", + "kind": "enum_value", + "name": "UserInfoReply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65936" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UserInfoRequest", + "kind": "enum_value", + "name": "UserInfoRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65935" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UserReport", + "kind": "enum_value", + "name": "UserReport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65669" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.UserReportInternal", + "kind": "enum_value", + "name": "UserReportInternal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65557" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.VelocityInterpolateOff", + "kind": "enum_value", + "name": "VelocityInterpolateOff", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65662" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.VelocityInterpolateOn", + "kind": "enum_value", + "name": "VelocityInterpolateOn", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65661" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ViewerEffect", + "kind": "enum_value", + "name": "ViewerEffect", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "131089" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ViewerFrozenMessage", + "kind": "enum_value", + "name": "ViewerFrozenMessage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65673" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ViewerStartAuction", + "kind": "enum_value", + "name": "ViewerStartAuction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65764" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PacketType.ViewerStats", + "kind": "enum_value", + "name": "ViewerStats", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.PacketType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Packets.PacketType", + "value": "65667" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelAccessListReplyPacket", + "signature": "LibreMetaverse.Packets.ParcelAccessListReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.List", + "kind": "field", + "name": "List", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor", + "kind": "constructor", + "name": "ParcelAccessListReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAccessListReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAccessListReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ListBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.#ctor", + "kind": "constructor", + "name": "ListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelAccessListRequestPacket", + "signature": "LibreMetaverse.Packets.ParcelAccessListRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor", + "kind": "constructor", + "name": "ParcelAccessListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAccessListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAccessListRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelAccessListUpdatePacket", + "signature": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.List", + "kind": "field", + "name": "List", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor", + "kind": "constructor", + "name": "ParcelAccessListUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAccessListUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAccessListUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.Sections", + "kind": "field", + "name": "Sections", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ListBlock", + "signature": "LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.#ctor", + "kind": "constructor", + "name": "ListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAuctionsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelAuctionsPacket", + "signature": "LibreMetaverse.Packets.ParcelAuctionsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor", + "kind": "constructor", + "name": "ParcelAuctionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAuctionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelAuctionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAuctionsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAuctionsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.WinnerID", + "kind": "field", + "name": "WinnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelBuyPacket", + "signature": "LibreMetaverse.Packets.ParcelBuyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelBuyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor", + "kind": "constructor", + "name": "ParcelBuyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelBuyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelBuyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelBuyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.Final", + "kind": "field", + "name": "Final", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.RemoveContribution", + "kind": "field", + "name": "RemoveContribution", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.Area", + "kind": "field", + "name": "Area", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPassPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelBuyPassPacket", + "signature": "LibreMetaverse.Packets.ParcelBuyPassPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor", + "kind": "constructor", + "name": "ParcelBuyPassPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelBuyPassPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelBuyPassPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelClaimPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelClaimPacket", + "signature": "LibreMetaverse.Packets.ParcelClaimPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelClaimPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor", + "kind": "constructor", + "name": "ParcelClaimPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelClaimPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelClaimPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelClaimPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.Final", + "kind": "field", + "name": "Final", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.East", + "kind": "field", + "name": "East", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.North", + "kind": "field", + "name": "North", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.South", + "kind": "field", + "name": "South", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.West", + "kind": "field", + "name": "West", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDeedToGroupPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDeedToGroupPacket", + "signature": "LibreMetaverse.Packets.ParcelDeedToGroupPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor", + "kind": "constructor", + "name": "ParcelDeedToGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDeedToGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDeedToGroupPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDisableObjectsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDisableObjectsPacket", + "signature": "LibreMetaverse.Packets.ParcelDisableObjectsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDs", + "kind": "field", + "name": "OwnerIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDs", + "kind": "field", + "name": "TaskIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor", + "kind": "constructor", + "name": "ParcelDisableObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDisableObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDisableObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "OwnerIDsBlock", + "signature": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.#ctor", + "kind": "constructor", + "name": "OwnerIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OwnerIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ReturnType", + "kind": "field", + "name": "ReturnType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TaskIDsBlock", + "signature": "LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.#ctor", + "kind": "constructor", + "name": "TaskIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TaskIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDividePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDividePacket", + "signature": "LibreMetaverse.Packets.ParcelDividePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor", + "kind": "constructor", + "name": "ParcelDividePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDividePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDividePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.East", + "kind": "field", + "name": "East", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.North", + "kind": "field", + "name": "North", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.South", + "kind": "field", + "name": "South", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.West", + "kind": "field", + "name": "West", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDwellReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDwellReplyPacket", + "signature": "LibreMetaverse.Packets.ParcelDwellReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor", + "kind": "constructor", + "name": "ParcelDwellReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDwellReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDwellReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDwellRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDwellRequestPacket", + "signature": "LibreMetaverse.Packets.ParcelDwellRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor", + "kind": "constructor", + "name": "ParcelDwellRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDwellRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDwellRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelGodForceOwnerPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelGodForceOwnerPacket", + "signature": "LibreMetaverse.Packets.ParcelGodForceOwnerPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor", + "kind": "constructor", + "name": "ParcelGodForceOwnerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelGodForceOwnerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelGodForceOwnerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelGodMarkAsContentPacket", + "signature": "LibreMetaverse.Packets.ParcelGodMarkAsContentPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor", + "kind": "constructor", + "name": "ParcelGodMarkAsContentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelGodMarkAsContentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelGodMarkAsContentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelInfoReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelInfoReplyPacket", + "signature": "LibreMetaverse.Packets.ParcelInfoReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor", + "kind": "constructor", + "name": "ParcelInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.AuctionID", + "kind": "field", + "name": "AuctionID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.GlobalZ", + "kind": "field", + "name": "GlobalZ", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelInfoRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelInfoRequestPacket", + "signature": "LibreMetaverse.Packets.ParcelInfoRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor", + "kind": "constructor", + "name": "ParcelInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelJoinPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelJoinPacket", + "signature": "LibreMetaverse.Packets.ParcelJoinPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor", + "kind": "constructor", + "name": "ParcelJoinPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelJoinPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelJoinPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.East", + "kind": "field", + "name": "East", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.North", + "kind": "field", + "name": "North", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.South", + "kind": "field", + "name": "South", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.West", + "kind": "field", + "name": "West", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelMediaCommandMessagePacket", + "signature": "LibreMetaverse.Packets.ParcelMediaCommandMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlock", + "kind": "field", + "name": "CommandBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor", + "kind": "constructor", + "name": "ParcelMediaCommandMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelMediaCommandMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelMediaCommandMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CommandBlockBlock", + "signature": "LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Command", + "kind": "field", + "name": "Command", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.#ctor", + "kind": "constructor", + "name": "CommandBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CommandBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelMediaUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelMediaUpdatePacket", + "signature": "LibreMetaverse.Packets.ParcelMediaUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtended", + "kind": "field", + "name": "DataBlockExtended", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor", + "kind": "constructor", + "name": "ParcelMediaUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelMediaUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelMediaUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.MediaAutoScale", + "kind": "field", + "name": "MediaAutoScale", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.MediaID", + "kind": "field", + "name": "MediaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockExtendedBlock", + "signature": "LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaDesc", + "kind": "field", + "name": "MediaDesc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaHeight", + "kind": "field", + "name": "MediaHeight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaLoop", + "kind": "field", + "name": "MediaLoop", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaType", + "kind": "field", + "name": "MediaType", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaWidth", + "kind": "field", + "name": "MediaWidth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.#ctor", + "kind": "constructor", + "name": "DataBlockExtendedBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockExtendedBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelObjectOwnersReplyPacket", + "signature": "LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor", + "kind": "constructor", + "name": "ParcelObjectOwnersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelObjectOwnersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelObjectOwnersReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.Count", + "kind": "field", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.OnlineStatus", + "kind": "field", + "name": "OnlineStatus", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelObjectOwnersRequestPacket", + "signature": "LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor", + "kind": "constructor", + "name": "ParcelObjectOwnersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelObjectOwnersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelObjectOwnersRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelOverlayPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelOverlayPacket", + "signature": "LibreMetaverse.Packets.ParcelOverlayPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor", + "kind": "constructor", + "name": "ParcelOverlayPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelOverlayPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelOverlayPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelOverlayPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelOverlayPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelPropertiesPacket", + "signature": "LibreMetaverse.Packets.ParcelPropertiesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlock", + "kind": "field", + "name": "AgeVerificationBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlock", + "kind": "field", + "name": "ParcelEnvironmentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlock", + "kind": "field", + "name": "RegionAllowAccessBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor", + "kind": "constructor", + "name": "ParcelPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgeVerificationBlockBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.RegionDenyAgeUnverified", + "kind": "field", + "name": "RegionDenyAgeUnverified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.#ctor", + "kind": "constructor", + "name": "AgeVerificationBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgeVerificationBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.AABBMax", + "kind": "field", + "name": "AABBMax", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.AABBMin", + "kind": "field", + "name": "AABBMin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Area", + "kind": "field", + "name": "Area", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.AuctionID", + "kind": "field", + "name": "AuctionID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.AuthBuyerID", + "kind": "field", + "name": "AuthBuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Bitmap", + "kind": "field", + "name": "Bitmap", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ClaimDate", + "kind": "field", + "name": "ClaimDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ClaimPrice", + "kind": "field", + "name": "ClaimPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.GroupPrims", + "kind": "field", + "name": "GroupPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.LandingType", + "kind": "field", + "name": "LandingType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MaxPrims", + "kind": "field", + "name": "MaxPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MediaAutoScale", + "kind": "field", + "name": "MediaAutoScale", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MediaID", + "kind": "field", + "name": "MediaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MusicURL", + "kind": "field", + "name": "MusicURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OtherCleanTime", + "kind": "field", + "name": "OtherCleanTime", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OtherCount", + "kind": "field", + "name": "OtherCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OtherPrims", + "kind": "field", + "name": "OtherPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OwnerPrims", + "kind": "field", + "name": "OwnerPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ParcelFlags", + "kind": "field", + "name": "ParcelFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ParcelPrimBonus", + "kind": "field", + "name": "ParcelPrimBonus", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.PassHours", + "kind": "field", + "name": "PassHours", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.PassPrice", + "kind": "field", + "name": "PassPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.PublicCount", + "kind": "field", + "name": "PublicCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionDenyAnonymous", + "kind": "field", + "name": "RegionDenyAnonymous", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionDenyIdentified", + "kind": "field", + "name": "RegionDenyIdentified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionDenyTransacted", + "kind": "field", + "name": "RegionDenyTransacted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionPushOverride", + "kind": "field", + "name": "RegionPushOverride", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RentPrice", + "kind": "field", + "name": "RentPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RequestResult", + "kind": "field", + "name": "RequestResult", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SelectedPrims", + "kind": "field", + "name": "SelectedPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SelfCount", + "kind": "field", + "name": "SelfCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SimWideMaxPrims", + "kind": "field", + "name": "SimWideMaxPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SimWideTotalPrims", + "kind": "field", + "name": "SimWideTotalPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SnapSelection", + "kind": "field", + "name": "SnapSelection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.TotalPrims", + "kind": "field", + "name": "TotalPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.UserLocation", + "kind": "field", + "name": "UserLocation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.UserLookAt", + "kind": "field", + "name": "UserLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelEnvironmentBlockBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ParcelEnvironmentVersion", + "kind": "field", + "name": "ParcelEnvironmentVersion", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.RegionAllowEnvironmentOverride", + "kind": "field", + "name": "RegionAllowEnvironmentOverride", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.#ctor", + "kind": "constructor", + "name": "ParcelEnvironmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelEnvironmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionAllowAccessBlockBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.RegionAllowAccessOverride", + "kind": "field", + "name": "RegionAllowAccessOverride", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.#ctor", + "kind": "constructor", + "name": "RegionAllowAccessBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionAllowAccessBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelPropertiesRequestByIDPacket", + "signature": "LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor", + "kind": "constructor", + "name": "ParcelPropertiesRequestByIDPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesRequestByIDPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesRequestByIDPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelPropertiesRequestPacket", + "signature": "LibreMetaverse.Packets.ParcelPropertiesRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor", + "kind": "constructor", + "name": "ParcelPropertiesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.East", + "kind": "field", + "name": "East", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.North", + "kind": "field", + "name": "North", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.SequenceID", + "kind": "field", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.SnapSelection", + "kind": "field", + "name": "SnapSelection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.South", + "kind": "field", + "name": "South", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.West", + "kind": "field", + "name": "West", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelPropertiesUpdatePacket", + "signature": "LibreMetaverse.Packets.ParcelPropertiesUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor", + "kind": "constructor", + "name": "ParcelPropertiesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelPropertiesUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.AuthBuyerID", + "kind": "field", + "name": "AuthBuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.LandingType", + "kind": "field", + "name": "LandingType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MediaAutoScale", + "kind": "field", + "name": "MediaAutoScale", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MediaID", + "kind": "field", + "name": "MediaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MusicURL", + "kind": "field", + "name": "MusicURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ParcelFlags", + "kind": "field", + "name": "ParcelFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.PassHours", + "kind": "field", + "name": "PassHours", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.PassPrice", + "kind": "field", + "name": "PassPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.UserLocation", + "kind": "field", + "name": "UserLocation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.UserLookAt", + "kind": "field", + "name": "UserLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReclaimPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelReclaimPacket", + "signature": "LibreMetaverse.Packets.ParcelReclaimPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReclaimPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReclaimPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor", + "kind": "constructor", + "name": "ParcelReclaimPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelReclaimPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelReclaimPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReleasePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelReleasePacket", + "signature": "LibreMetaverse.Packets.ParcelReleasePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReleasePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReleasePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReleasePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor", + "kind": "constructor", + "name": "ParcelReleasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelReleasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelReleasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ParcelReleasePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelRenamePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelRenamePacket", + "signature": "LibreMetaverse.Packets.ParcelRenamePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelRenamePacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor", + "kind": "constructor", + "name": "ParcelRenamePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelRenamePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelRenamePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelRenamePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelRenamePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.NewName", + "kind": "field", + "name": "NewName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReturnObjectsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelReturnObjectsPacket", + "signature": "LibreMetaverse.Packets.ParcelReturnObjectsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDs", + "kind": "field", + "name": "OwnerIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDs", + "kind": "field", + "name": "TaskIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor", + "kind": "constructor", + "name": "ParcelReturnObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelReturnObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelReturnObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "OwnerIDsBlock", + "signature": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.#ctor", + "kind": "constructor", + "name": "OwnerIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OwnerIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ReturnType", + "kind": "field", + "name": "ReturnType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TaskIDsBlock", + "signature": "LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.#ctor", + "kind": "constructor", + "name": "TaskIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TaskIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSalesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelSalesPacket", + "signature": "LibreMetaverse.Packets.ParcelSalesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSalesPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor", + "kind": "constructor", + "name": "ParcelSalesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelSalesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelSalesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSalesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSalesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.BuyerID", + "kind": "field", + "name": "BuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSelectObjectsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelSelectObjectsPacket", + "signature": "LibreMetaverse.Packets.ParcelSelectObjectsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDs", + "kind": "field", + "name": "ReturnIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor", + "kind": "constructor", + "name": "ParcelSelectObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelSelectObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelSelectObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ReturnType", + "kind": "field", + "name": "ReturnType", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReturnIDsBlock", + "signature": "LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.ReturnID", + "kind": "field", + "name": "ReturnID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.#ctor", + "kind": "constructor", + "name": "ReturnIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReturnIDsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelSetOtherCleanTimePacket", + "signature": "LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor", + "kind": "constructor", + "name": "ParcelSetOtherCleanTimePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelSetOtherCleanTimePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelSetOtherCleanTimePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.OtherCleanTime", + "kind": "field", + "name": "OtherCleanTime", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PayPriceReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PayPriceReplyPacket", + "signature": "LibreMetaverse.Packets.PayPriceReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonData", + "kind": "field", + "name": "ButtonData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor", + "kind": "constructor", + "name": "PayPriceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PayPriceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PayPriceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ButtonDataBlock", + "signature": "LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.PayButton", + "kind": "field", + "name": "PayButton", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.#ctor", + "kind": "constructor", + "name": "ButtonDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ButtonDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.DefaultPayPrice", + "kind": "field", + "name": "DefaultPayPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickDeletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "PickDeletePacket", + "signature": "LibreMetaverse.Packets.PickDeletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickDeletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickDeletePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickDeletePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor", + "kind": "constructor", + "name": "PickDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickDeletePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.PickDeletePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickDeletePacket.DataBlock.PickID", + "kind": "field", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickGodDeletePacket", + "namespace": "LibreMetaverse.Packets", + "name": "PickGodDeletePacket", + "signature": "LibreMetaverse.Packets.PickGodDeletePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickGodDeletePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickGodDeletePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickGodDeletePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor", + "kind": "constructor", + "name": "PickGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickGodDeletePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.PickGodDeletePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.PickID", + "kind": "field", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickInfoReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PickInfoReplyPacket", + "signature": "LibreMetaverse.Packets.PickInfoReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor", + "kind": "constructor", + "name": "PickInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.OriginalName", + "kind": "field", + "name": "OriginalName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.PickID", + "kind": "field", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.PosGlobal", + "kind": "field", + "name": "PosGlobal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.SortOrder", + "kind": "field", + "name": "SortOrder", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.TopPick", + "kind": "field", + "name": "TopPick", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.User", + "kind": "field", + "name": "User", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickInfoUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "PickInfoUpdatePacket", + "signature": "LibreMetaverse.Packets.PickInfoUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor", + "kind": "constructor", + "name": "PickInfoUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickInfoUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PickInfoUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.PickID", + "kind": "field", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.PosGlobal", + "kind": "field", + "name": "PosGlobal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.SortOrder", + "kind": "field", + "name": "SortOrder", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.TopPick", + "kind": "field", + "name": "TopPick", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesQueryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PlacesQueryPacket", + "signature": "LibreMetaverse.Packets.PlacesQueryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor", + "kind": "constructor", + "name": "PlacesQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PlacesQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PlacesQueryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.QueryFlags", + "kind": "field", + "name": "QueryFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.QueryText", + "kind": "field", + "name": "QueryText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PlacesReplyPacket", + "signature": "LibreMetaverse.Packets.PlacesReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.TransactionData", + "kind": "field", + "name": "TransactionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor", + "kind": "constructor", + "name": "PlacesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PlacesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PlacesReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.GlobalZ", + "kind": "field", + "name": "GlobalZ", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Price", + "kind": "field", + "name": "Price", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionDataBlock", + "signature": "LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.#ctor", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PreloadSoundPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PreloadSoundPacket", + "signature": "LibreMetaverse.Packets.PreloadSoundPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PreloadSoundPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor", + "kind": "constructor", + "name": "PreloadSoundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PreloadSoundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PreloadSoundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PreloadSoundPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PreloadSoundPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.SoundID", + "kind": "field", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "PurgeInventoryDescendentsPacket", + "signature": "LibreMetaverse.Packets.PurgeInventoryDescendentsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor", + "kind": "constructor", + "name": "PurgeInventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PurgeInventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PurgeInventoryDescendentsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RebakeAvatarTexturesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RebakeAvatarTexturesPacket", + "signature": "LibreMetaverse.Packets.RebakeAvatarTexturesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureData", + "kind": "field", + "name": "TextureData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor", + "kind": "constructor", + "name": "RebakeAvatarTexturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RebakeAvatarTexturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RebakeAvatarTexturesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TextureDataBlock", + "signature": "LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.TextureID", + "kind": "field", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.#ctor", + "kind": "constructor", + "name": "TextureDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TextureDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RedoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RedoPacket", + "signature": "LibreMetaverse.Packets.RedoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RedoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RedoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RedoPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RedoPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor", + "kind": "constructor", + "name": "RedoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RedoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RedoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RedoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RedoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RedoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RedoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.RedoPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandleRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionHandleRequestPacket", + "signature": "LibreMetaverse.Packets.RegionHandleRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlock", + "kind": "field", + "name": "RequestBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor", + "kind": "constructor", + "name": "RegionHandleRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionHandleRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionHandleRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandleRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandleRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestBlockBlock", + "signature": "LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.#ctor", + "kind": "constructor", + "name": "RequestBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakePacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionHandshakePacket", + "signature": "LibreMetaverse.Packets.RegionHandshakePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo", + "kind": "field", + "name": "RegionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2", + "kind": "field", + "name": "RegionInfo2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3", + "kind": "field", + "name": "RegionInfo3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4", + "kind": "field", + "name": "RegionInfo4", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor", + "kind": "constructor", + "name": "RegionHandshakePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionHandshakePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionHandshakePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo2Block", + "signature": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.#ctor", + "kind": "constructor", + "name": "RegionInfo2Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo2Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo3Block", + "signature": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.CPUClassID", + "kind": "field", + "name": "CPUClassID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.CPURatio", + "kind": "field", + "name": "CPURatio", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ColoName", + "kind": "field", + "name": "ColoName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ProductName", + "kind": "field", + "name": "ProductName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ProductSKU", + "kind": "field", + "name": "ProductSKU", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.#ctor", + "kind": "constructor", + "name": "RegionInfo3Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo3Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo4Block", + "signature": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.RegionFlagsExtended", + "kind": "field", + "name": "RegionFlagsExtended", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.RegionProtocols", + "kind": "field", + "name": "RegionProtocols", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.#ctor", + "kind": "constructor", + "name": "RegionInfo4Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo4Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfoBlock", + "signature": "LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.BillableFactor", + "kind": "field", + "name": "BillableFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.CacheID", + "kind": "field", + "name": "CacheID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.IsEstateManager", + "kind": "field", + "name": "IsEstateManager", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.SimOwner", + "kind": "field", + "name": "SimOwner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainBase0", + "kind": "field", + "name": "TerrainBase0", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainBase1", + "kind": "field", + "name": "TerrainBase1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainBase2", + "kind": "field", + "name": "TerrainBase2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainBase3", + "kind": "field", + "name": "TerrainBase3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainDetail0", + "kind": "field", + "name": "TerrainDetail0", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainDetail1", + "kind": "field", + "name": "TerrainDetail1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainDetail2", + "kind": "field", + "name": "TerrainDetail2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainDetail3", + "kind": "field", + "name": "TerrainDetail3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange00", + "kind": "field", + "name": "TerrainHeightRange00", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange01", + "kind": "field", + "name": "TerrainHeightRange01", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange10", + "kind": "field", + "name": "TerrainHeightRange10", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange11", + "kind": "field", + "name": "TerrainHeightRange11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight00", + "kind": "field", + "name": "TerrainStartHeight00", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight01", + "kind": "field", + "name": "TerrainStartHeight01", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight10", + "kind": "field", + "name": "TerrainStartHeight10", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight11", + "kind": "field", + "name": "TerrainStartHeight11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.WaterHeight", + "kind": "field", + "name": "WaterHeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.#ctor", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakeReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionHandshakeReplyPacket", + "signature": "LibreMetaverse.Packets.RegionHandshakeReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfo", + "kind": "field", + "name": "RegionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor", + "kind": "constructor", + "name": "RegionHandshakeReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionHandshakeReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionHandshakeReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfoBlock", + "signature": "LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.#ctor", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionIDAndHandleReplyPacket", + "signature": "LibreMetaverse.Packets.RegionIDAndHandleReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlock", + "kind": "field", + "name": "ReplyBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor", + "kind": "constructor", + "name": "RegionIDAndHandleReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionIDAndHandleReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionIDAndHandleReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReplyBlockBlock", + "signature": "LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.#ctor", + "kind": "constructor", + "name": "ReplyBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReplyBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfoPacket", + "signature": "LibreMetaverse.Packets.RegionInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettings", + "kind": "field", + "name": "CombatSettings", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo", + "kind": "field", + "name": "RegionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2", + "kind": "field", + "name": "RegionInfo2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3", + "kind": "field", + "name": "RegionInfo3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5", + "kind": "field", + "name": "RegionInfo5", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor", + "kind": "constructor", + "name": "RegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CombatSettingsBlock", + "signature": "LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.CombatFlags", + "kind": "field", + "name": "CombatFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.DamageLimit", + "kind": "field", + "name": "DamageLimit", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.DamageThrottle", + "kind": "field", + "name": "DamageThrottle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.InvulnerabilyTime", + "kind": "field", + "name": "InvulnerabilyTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.OnDeath", + "kind": "field", + "name": "OnDeath", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.RegenerationRate", + "kind": "field", + "name": "RegenerationRate", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.#ctor", + "kind": "constructor", + "name": "CombatSettingsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CombatSettingsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo2Block", + "signature": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.HardMaxAgents", + "kind": "field", + "name": "HardMaxAgents", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.HardMaxObjects", + "kind": "field", + "name": "HardMaxObjects", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.MaxAgents32", + "kind": "field", + "name": "MaxAgents32", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ProductName", + "kind": "field", + "name": "ProductName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ProductSKU", + "kind": "field", + "name": "ProductSKU", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.#ctor", + "kind": "constructor", + "name": "RegionInfo2Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo2Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo3Block", + "signature": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.RegionFlagsExtended", + "kind": "field", + "name": "RegionFlagsExtended", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.#ctor", + "kind": "constructor", + "name": "RegionInfo3Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo3Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfo5Block", + "signature": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatFlags", + "kind": "field", + "name": "ChatFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatNormalOffset", + "kind": "field", + "name": "ChatNormalOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatNormalRange", + "kind": "field", + "name": "ChatNormalRange", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatShoutOffset", + "kind": "field", + "name": "ChatShoutOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatShoutRange", + "kind": "field", + "name": "ChatShoutRange", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatWhisperOffset", + "kind": "field", + "name": "ChatWhisperOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatWhisperRange", + "kind": "field", + "name": "ChatWhisperRange", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.#ctor", + "kind": "constructor", + "name": "RegionInfo5Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfo5Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfoBlock", + "signature": "LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.BillableFactor", + "kind": "field", + "name": "BillableFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.MaxAgents", + "kind": "field", + "name": "MaxAgents", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ObjectBonusFactor", + "kind": "field", + "name": "ObjectBonusFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.PricePerMeter", + "kind": "field", + "name": "PricePerMeter", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.RedirectGridX", + "kind": "field", + "name": "RedirectGridX", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.RedirectGridY", + "kind": "field", + "name": "RedirectGridY", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.SunHour", + "kind": "field", + "name": "SunHour", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.TerrainLowerLimit", + "kind": "field", + "name": "TerrainLowerLimit", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.TerrainRaiseLimit", + "kind": "field", + "name": "TerrainRaiseLimit", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.UseEstateSun", + "kind": "field", + "name": "UseEstateSun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.WaterHeight", + "kind": "field", + "name": "WaterHeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.#ctor", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionPresenceRequestByHandlePacket", + "signature": "LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor", + "kind": "constructor", + "name": "RegionPresenceRequestByHandlePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionPresenceRequestByHandlePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionPresenceRequestByHandlePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionPresenceRequestByRegionIDPacket", + "signature": "LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor", + "kind": "constructor", + "name": "RegionPresenceRequestByRegionIDPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionPresenceRequestByRegionIDPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionPresenceRequestByRegionIDPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionPresenceResponsePacket", + "namespace": "LibreMetaverse.Packets", + "name": "RegionPresenceResponsePacket", + "signature": "LibreMetaverse.Packets.RegionPresenceResponsePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor", + "kind": "constructor", + "name": "RegionPresenceResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionPresenceResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionPresenceResponsePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceResponsePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceResponsePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ExternalRegionIP", + "kind": "field", + "name": "ExternalRegionIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.InternalRegionIP", + "kind": "field", + "name": "InternalRegionIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.RegionPort", + "kind": "field", + "name": "RegionPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ValidUntil", + "kind": "field", + "name": "ValidUntil", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveAttachmentPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveAttachmentPacket", + "signature": "LibreMetaverse.Packets.RemoveAttachmentPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlock", + "kind": "field", + "name": "AttachmentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor", + "kind": "constructor", + "name": "RemoveAttachmentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveAttachmentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveAttachmentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AttachmentBlockBlock", + "signature": "LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.AttachmentPoint", + "kind": "field", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.#ctor", + "kind": "constructor", + "name": "AttachmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryFolderPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveInventoryFolderPacket", + "signature": "LibreMetaverse.Packets.RemoveInventoryFolderPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor", + "kind": "constructor", + "name": "RemoveInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveInventoryItemPacket", + "signature": "LibreMetaverse.Packets.RemoveInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "RemoveInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryObjectsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveInventoryObjectsPacket", + "signature": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemData", + "kind": "field", + "name": "ItemData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor", + "kind": "constructor", + "name": "RemoveInventoryObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveInventoryObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveInventoryObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ItemDataBlock", + "signature": "LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.#ctor", + "kind": "constructor", + "name": "ItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ItemDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveMuteListEntryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveMuteListEntryPacket", + "signature": "LibreMetaverse.Packets.RemoveMuteListEntryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteData", + "kind": "field", + "name": "MuteData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor", + "kind": "constructor", + "name": "RemoveMuteListEntryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveMuteListEntryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveMuteListEntryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MuteDataBlock", + "signature": "LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.MuteID", + "kind": "field", + "name": "MuteID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.MuteName", + "kind": "field", + "name": "MuteName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.#ctor", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveNameValuePairPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveNameValuePairPacket", + "signature": "LibreMetaverse.Packets.RemoveNameValuePairPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueData", + "kind": "field", + "name": "NameValueData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskData", + "kind": "field", + "name": "TaskData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor", + "kind": "constructor", + "name": "RemoveNameValuePairPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveNameValuePairPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveNameValuePairPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NameValueDataBlock", + "signature": "LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.NVPair", + "kind": "field", + "name": "NVPair", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.#ctor", + "kind": "constructor", + "name": "NameValueDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NameValueDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TaskDataBlock", + "signature": "LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.#ctor", + "kind": "constructor", + "name": "TaskDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TaskDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveParcelPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveParcelPacket", + "signature": "LibreMetaverse.Packets.RemoveParcelPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveParcelPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor", + "kind": "constructor", + "name": "RemoveParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveParcelPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveParcelPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveTaskInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RemoveTaskInventoryPacket", + "signature": "LibreMetaverse.Packets.RemoveTaskInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor", + "kind": "constructor", + "name": "RemoveTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RemoveTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ReplyTaskInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ReplyTaskInventoryPacket", + "signature": "LibreMetaverse.Packets.ReplyTaskInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor", + "kind": "constructor", + "name": "ReplyTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReplyTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReplyTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ReplyTaskInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ReplyTaskInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.Filename", + "kind": "field", + "name": "Filename", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.Serial", + "kind": "field", + "name": "Serial", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ReportAutosaveCrashPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ReportAutosaveCrashPacket", + "signature": "LibreMetaverse.Packets.ReportAutosaveCrashPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveData", + "kind": "field", + "name": "AutosaveData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor", + "kind": "constructor", + "name": "ReportAutosaveCrashPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReportAutosaveCrashPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReportAutosaveCrashPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ReportAutosaveCrashPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ReportAutosaveCrashPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AutosaveDataBlock", + "signature": "LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.PID", + "kind": "field", + "name": "PID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.#ctor", + "kind": "constructor", + "name": "AutosaveDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AutosaveDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestGodlikePowersPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestGodlikePowersPacket", + "signature": "LibreMetaverse.Packets.RequestGodlikePowersPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlock", + "kind": "field", + "name": "RequestBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor", + "kind": "constructor", + "name": "RequestGodlikePowersPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestGodlikePowersPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestGodlikePowersPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestBlockBlock", + "signature": "LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.Godlike", + "kind": "field", + "name": "Godlike", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.Token", + "kind": "field", + "name": "Token", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.#ctor", + "kind": "constructor", + "name": "RequestBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestImagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestImagePacket", + "signature": "LibreMetaverse.Packets.RequestImagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImage", + "kind": "field", + "name": "RequestImage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor", + "kind": "constructor", + "name": "RequestImagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestImagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestImagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequestImageBlock", + "signature": "LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.DiscardLevel", + "kind": "field", + "name": "DiscardLevel", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.DownloadPriority", + "kind": "field", + "name": "DownloadPriority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Image", + "kind": "field", + "name": "Image", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Packet", + "kind": "field", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.#ctor", + "kind": "constructor", + "name": "RequestImageBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestImageBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestInventoryAssetPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestInventoryAssetPacket", + "signature": "LibreMetaverse.Packets.RequestInventoryAssetPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryData", + "kind": "field", + "name": "QueryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor", + "kind": "constructor", + "name": "RequestInventoryAssetPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestInventoryAssetPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestInventoryAssetPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestInventoryAssetPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestInventoryAssetPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "QueryDataBlock", + "signature": "LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.QueryID", + "kind": "field", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.#ctor", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "QueryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestMultipleObjectsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestMultipleObjectsPacket", + "signature": "LibreMetaverse.Packets.RequestMultipleObjectsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor", + "kind": "constructor", + "name": "RequestMultipleObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestMultipleObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestMultipleObjectsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.CacheMissType", + "kind": "field", + "name": "CacheMissType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestObjectPropertiesFamilyPacket", + "signature": "LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor", + "kind": "constructor", + "name": "RequestObjectPropertiesFamilyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestObjectPropertiesFamilyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestObjectPropertiesFamilyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.RequestFlags", + "kind": "field", + "name": "RequestFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestParcelTransferPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestParcelTransferPacket", + "signature": "LibreMetaverse.Packets.RequestParcelTransferPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor", + "kind": "constructor", + "name": "RequestParcelTransferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestParcelTransferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestParcelTransferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Final", + "kind": "field", + "name": "Final", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.TransactionTime", + "kind": "field", + "name": "TransactionTime", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestPayPricePacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestPayPricePacket", + "signature": "LibreMetaverse.Packets.RequestPayPricePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestPayPricePacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor", + "kind": "constructor", + "name": "RequestPayPricePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestPayPricePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestPayPricePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestPayPricePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestPayPricePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestRegionInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestRegionInfoPacket", + "signature": "LibreMetaverse.Packets.RequestRegionInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor", + "kind": "constructor", + "name": "RequestRegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestRegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestRegionInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestRegionInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestRegionInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestTaskInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestTaskInventoryPacket", + "signature": "LibreMetaverse.Packets.RequestTaskInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor", + "kind": "constructor", + "name": "RequestTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestTrustedCircuitPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestTrustedCircuitPacket", + "signature": "LibreMetaverse.Packets.RequestTrustedCircuitPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor", + "kind": "constructor", + "name": "RequestTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestTrustedCircuitPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestTrustedCircuitPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestTrustedCircuitPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestXferPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RequestXferPacket", + "signature": "LibreMetaverse.Packets.RequestXferPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferID", + "kind": "field", + "name": "XferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RequestXferPacket.XferIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor", + "kind": "constructor", + "name": "RequestXferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestXferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequestXferPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestXferPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestXferPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "XferIDBlock", + "signature": "LibreMetaverse.Packets.RequestXferPacket.XferIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.DeleteOnCompletion", + "kind": "field", + "name": "DeleteOnCompletion", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FilePath", + "kind": "field", + "name": "FilePath", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.Filename", + "kind": "field", + "name": "Filename", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.UseBigPackets", + "kind": "field", + "name": "UseBigPackets", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.VFileID", + "kind": "field", + "name": "VFileID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.VFileType", + "kind": "field", + "name": "VFileType", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.#ctor", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RetrieveIMsExtendedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RetrieveIMsExtendedPacket", + "signature": "LibreMetaverse.Packets.RetrieveIMsExtendedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor", + "kind": "constructor", + "name": "RetrieveIMsExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RetrieveIMsExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RetrieveIMsExtendedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.IsPremium", + "kind": "field", + "name": "IsPremium", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RetrieveInstantMessagesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RetrieveInstantMessagesPacket", + "signature": "LibreMetaverse.Packets.RetrieveInstantMessagesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor", + "kind": "constructor", + "name": "RetrieveInstantMessagesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RetrieveInstantMessagesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RetrieveInstantMessagesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RevokePermissionsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RevokePermissionsPacket", + "signature": "LibreMetaverse.Packets.RevokePermissionsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor", + "kind": "constructor", + "name": "RevokePermissionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RevokePermissionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RevokePermissionsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ObjectPermissions", + "kind": "field", + "name": "ObjectPermissions", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RezMultipleAttachmentsFromInvPacket", + "signature": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderData", + "kind": "field", + "name": "HeaderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor", + "kind": "constructor", + "name": "RezMultipleAttachmentsFromInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezMultipleAttachmentsFromInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezMultipleAttachmentsFromInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "HeaderDataBlock", + "signature": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.CompoundMsgID", + "kind": "field", + "name": "CompoundMsgID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FirstDetachAll", + "kind": "field", + "name": "FirstDetachAll", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.TotalObjects", + "kind": "field", + "name": "TotalObjects", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.#ctor", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "HeaderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.AttachmentPt", + "kind": "field", + "name": "AttachmentPt", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ItemFlags", + "kind": "field", + "name": "ItemFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectFromNotecardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RezObjectFromNotecardPacket", + "signature": "LibreMetaverse.Packets.RezObjectFromNotecardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardData", + "kind": "field", + "name": "NotecardData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezData", + "kind": "field", + "name": "RezData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor", + "kind": "constructor", + "name": "RezObjectFromNotecardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezObjectFromNotecardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezObjectFromNotecardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NotecardDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.NotecardItemID", + "kind": "field", + "name": "NotecardItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.#ctor", + "kind": "constructor", + "name": "NotecardDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NotecardDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RezDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.BypassRaycast", + "kind": "field", + "name": "BypassRaycast", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromTaskID", + "kind": "field", + "name": "FromTaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ItemFlags", + "kind": "field", + "name": "ItemFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RayEnd", + "kind": "field", + "name": "RayEnd", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RayEndIsIntersection", + "kind": "field", + "name": "RayEndIsIntersection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RayStart", + "kind": "field", + "name": "RayStart", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RayTargetID", + "kind": "field", + "name": "RayTargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RemoveItem", + "kind": "field", + "name": "RemoveItem", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RezSelected", + "kind": "field", + "name": "RezSelected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.#ctor", + "kind": "constructor", + "name": "RezDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RezObjectPacket", + "signature": "LibreMetaverse.Packets.RezObjectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezData", + "kind": "field", + "name": "RezData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezObjectPacket.RezDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor", + "kind": "constructor", + "name": "RezObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezObjectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RezDataBlock", + "signature": "LibreMetaverse.Packets.RezObjectPacket.RezDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.BypassRaycast", + "kind": "field", + "name": "BypassRaycast", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromTaskID", + "kind": "field", + "name": "FromTaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ItemFlags", + "kind": "field", + "name": "ItemFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RayEnd", + "kind": "field", + "name": "RayEnd", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RayEndIsIntersection", + "kind": "field", + "name": "RayEndIsIntersection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RayStart", + "kind": "field", + "name": "RayStart", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RayTargetID", + "kind": "field", + "name": "RayTargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RemoveItem", + "kind": "field", + "name": "RemoveItem", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RezSelected", + "kind": "field", + "name": "RezSelected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.#ctor", + "kind": "constructor", + "name": "RezDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezRestoreToWorldPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RezRestoreToWorldPacket", + "signature": "LibreMetaverse.Packets.RezRestoreToWorldPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor", + "kind": "constructor", + "name": "RezRestoreToWorldPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezRestoreToWorldPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezRestoreToWorldPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezScriptPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RezScriptPacket", + "signature": "LibreMetaverse.Packets.RezScriptPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlock", + "kind": "field", + "name": "InventoryBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.UpdateBlock", + "kind": "field", + "name": "UpdateBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor", + "kind": "constructor", + "name": "RezScriptPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezScriptPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezScriptPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryBlockBlock", + "signature": "LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.#ctor", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateBlockBlock", + "signature": "LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ObjectLocalID", + "kind": "field", + "name": "ObjectLocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.#ctor", + "kind": "constructor", + "name": "UpdateBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RezSingleAttachmentFromInvPacket", + "signature": "LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor", + "kind": "constructor", + "name": "RezSingleAttachmentFromInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezSingleAttachmentFromInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RezSingleAttachmentFromInvPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.AttachmentPt", + "kind": "field", + "name": "AttachmentPt", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ItemFlags", + "kind": "field", + "name": "ItemFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RoutedMoneyBalanceReplyPacket", + "signature": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyData", + "kind": "field", + "name": "MoneyData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlock", + "kind": "field", + "name": "TargetBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfo", + "kind": "field", + "name": "TransactionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor", + "kind": "constructor", + "name": "RoutedMoneyBalanceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RoutedMoneyBalanceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RoutedMoneyBalanceReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MoneyDataBlock", + "signature": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.MoneyBalance", + "kind": "field", + "name": "MoneyBalance", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCommitted", + "kind": "field", + "name": "SquareMetersCommitted", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCredit", + "kind": "field", + "name": "SquareMetersCredit", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.TransactionSuccess", + "kind": "field", + "name": "TransactionSuccess", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.#ctor", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MoneyDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TargetBlockBlock", + "signature": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.TargetIP", + "kind": "field", + "name": "TargetIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.TargetPort", + "kind": "field", + "name": "TargetPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.#ctor", + "kind": "constructor", + "name": "TargetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TargetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransactionInfoBlock", + "signature": "LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.IsDestGroup", + "kind": "field", + "name": "IsDestGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.IsSourceGroup", + "kind": "field", + "name": "IsSourceGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ItemDescription", + "kind": "field", + "name": "ItemDescription", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.#ctor", + "kind": "constructor", + "name": "TransactionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransactionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcChannelReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RpcChannelReplyPacket", + "signature": "LibreMetaverse.Packets.RpcChannelReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor", + "kind": "constructor", + "name": "RpcChannelReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcChannelReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcChannelReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcChannelReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcChannelReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ChannelID", + "kind": "field", + "name": "ChannelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcChannelRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RpcChannelRequestPacket", + "signature": "LibreMetaverse.Packets.RpcChannelRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor", + "kind": "constructor", + "name": "RpcChannelRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcChannelRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcChannelRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcChannelRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcChannelRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptReplyInboundPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RpcScriptReplyInboundPacket", + "signature": "LibreMetaverse.Packets.RpcScriptReplyInboundPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor", + "kind": "constructor", + "name": "RpcScriptReplyInboundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcScriptReplyInboundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcScriptReplyInboundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ChannelID", + "kind": "field", + "name": "ChannelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.IntValue", + "kind": "field", + "name": "IntValue", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.StringValue", + "kind": "field", + "name": "StringValue", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RpcScriptRequestInboundForwardPacket", + "signature": "LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor", + "kind": "constructor", + "name": "RpcScriptRequestInboundForwardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcScriptRequestInboundForwardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcScriptRequestInboundForwardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ChannelID", + "kind": "field", + "name": "ChannelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.IntValue", + "kind": "field", + "name": "IntValue", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.RPCServerIP", + "kind": "field", + "name": "RPCServerIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.RPCServerPort", + "kind": "field", + "name": "RPCServerPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.StringValue", + "kind": "field", + "name": "StringValue", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptRequestInboundPacket", + "namespace": "LibreMetaverse.Packets", + "name": "RpcScriptRequestInboundPacket", + "signature": "LibreMetaverse.Packets.RpcScriptRequestInboundPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlock", + "kind": "field", + "name": "TargetBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor", + "kind": "constructor", + "name": "RpcScriptRequestInboundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcScriptRequestInboundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RpcScriptRequestInboundPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ChannelID", + "kind": "field", + "name": "ChannelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.IntValue", + "kind": "field", + "name": "IntValue", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.StringValue", + "kind": "field", + "name": "StringValue", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TargetBlockBlock", + "signature": "LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.#ctor", + "kind": "constructor", + "name": "TargetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TargetBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SaveAssetIntoInventoryPacket", + "signature": "LibreMetaverse.Packets.SaveAssetIntoInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor", + "kind": "constructor", + "name": "SaveAssetIntoInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SaveAssetIntoInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SaveAssetIntoInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.NewAssetID", + "kind": "field", + "name": "NewAssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptAnswerYesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptAnswerYesPacket", + "signature": "LibreMetaverse.Packets.ScriptAnswerYesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor", + "kind": "constructor", + "name": "ScriptAnswerYesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptAnswerYesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptAnswerYesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.Questions", + "kind": "field", + "name": "Questions", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptControlChangePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptControlChangePacket", + "signature": "LibreMetaverse.Packets.ScriptControlChangePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor", + "kind": "constructor", + "name": "ScriptControlChangePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptControlChangePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptControlChangePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptControlChangePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptControlChangePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.Controls", + "kind": "field", + "name": "Controls", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.PassToAgent", + "kind": "field", + "name": "PassToAgent", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.TakeControls", + "kind": "field", + "name": "TakeControls", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDataReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptDataReplyPacket", + "signature": "LibreMetaverse.Packets.ScriptDataReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor", + "kind": "constructor", + "name": "ScriptDataReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDataReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDataReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDataReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDataReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.Hash", + "kind": "field", + "name": "Hash", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.Reply", + "kind": "field", + "name": "Reply", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDataRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptDataRequestPacket", + "signature": "LibreMetaverse.Packets.ScriptDataRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor", + "kind": "constructor", + "name": "ScriptDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDataRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDataRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDataRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.Hash", + "kind": "field", + "name": "Hash", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.RequestType", + "kind": "field", + "name": "RequestType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptDialogPacket", + "signature": "LibreMetaverse.Packets.ScriptDialogPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.Buttons", + "kind": "field", + "name": "Buttons", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDialogPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.OwnerData", + "kind": "field", + "name": "OwnerData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor", + "kind": "constructor", + "name": "ScriptDialogPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDialogPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDialogPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ButtonsBlock", + "signature": "LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ButtonLabel", + "kind": "field", + "name": "ButtonLabel", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.#ctor", + "kind": "constructor", + "name": "ButtonsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ButtonsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ScriptDialogPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ChatChannel", + "kind": "field", + "name": "ChatChannel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ImageID", + "kind": "field", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ObjectName", + "kind": "field", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "OwnerDataBlock", + "signature": "LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.#ctor", + "kind": "constructor", + "name": "OwnerDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OwnerDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptDialogReplyPacket", + "signature": "LibreMetaverse.Packets.ScriptDialogReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor", + "kind": "constructor", + "name": "ScriptDialogReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDialogReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptDialogReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ButtonIndex", + "kind": "field", + "name": "ButtonIndex", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ButtonLabel", + "kind": "field", + "name": "ButtonLabel", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ChatChannel", + "kind": "field", + "name": "ChatChannel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptMailRegistrationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptMailRegistrationPacket", + "signature": "LibreMetaverse.Packets.ScriptMailRegistrationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor", + "kind": "constructor", + "name": "ScriptMailRegistrationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptMailRegistrationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptMailRegistrationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptMailRegistrationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptMailRegistrationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.TargetIP", + "kind": "field", + "name": "TargetIP", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.TargetPort", + "kind": "field", + "name": "TargetPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptQuestionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptQuestionPacket", + "signature": "LibreMetaverse.Packets.ScriptQuestionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.Experience", + "kind": "field", + "name": "Experience", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor", + "kind": "constructor", + "name": "ScriptQuestionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptQuestionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptQuestionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ObjectName", + "kind": "field", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ObjectOwner", + "kind": "field", + "name": "ObjectOwner", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.Questions", + "kind": "field", + "name": "Questions", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.TaskID", + "kind": "field", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ExperienceBlock", + "signature": "LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.ExperienceID", + "kind": "field", + "name": "ExperienceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.#ctor", + "kind": "constructor", + "name": "ExperienceBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ExperienceBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptResetPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptResetPacket", + "signature": "LibreMetaverse.Packets.ScriptResetPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptResetPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptResetPacket.Script", + "kind": "field", + "name": "Script", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor", + "kind": "constructor", + "name": "ScriptResetPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptResetPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptResetPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptBlock", + "signature": "LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.#ctor", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptRunningReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptRunningReplyPacket", + "signature": "LibreMetaverse.Packets.ScriptRunningReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptRunningReplyPacket.Script", + "kind": "field", + "name": "Script", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor", + "kind": "constructor", + "name": "ScriptRunningReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptRunningReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptRunningReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptRunningReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptRunningReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptBlock", + "signature": "LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.Running", + "kind": "field", + "name": "Running", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.#ctor", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptSensorReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptSensorReplyPacket", + "signature": "LibreMetaverse.Packets.ScriptSensorReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.Requester", + "kind": "field", + "name": "Requester", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedData", + "kind": "field", + "name": "SensedData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor", + "kind": "constructor", + "name": "ScriptSensorReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptSensorReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptSensorReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequesterBlock", + "signature": "LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.#ctor", + "kind": "constructor", + "name": "RequesterBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequesterBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SensedDataBlock", + "signature": "LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Range", + "kind": "field", + "name": "Range", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Velocity", + "kind": "field", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.#ctor", + "kind": "constructor", + "name": "SensedDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SensedDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptSensorRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptSensorRequestPacket", + "signature": "LibreMetaverse.Packets.ScriptSensorRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.Requester", + "kind": "field", + "name": "Requester", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor", + "kind": "constructor", + "name": "ScriptSensorRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptSensorRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptSensorRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RequesterBlock", + "signature": "LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Arc", + "kind": "field", + "name": "Arc", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Range", + "kind": "field", + "name": "Range", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.RequestID", + "kind": "field", + "name": "RequestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchDir", + "kind": "field", + "name": "SearchDir", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchID", + "kind": "field", + "name": "SearchID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchName", + "kind": "field", + "name": "SearchName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchPos", + "kind": "field", + "name": "SearchPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchRegions", + "kind": "field", + "name": "SearchRegions", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.#ctor", + "kind": "constructor", + "name": "RequesterBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RequesterBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptTeleportRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptTeleportRequestPacket", + "signature": "LibreMetaverse.Packets.ScriptTeleportRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.Options", + "kind": "field", + "name": "Options", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor", + "kind": "constructor", + "name": "ScriptTeleportRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptTeleportRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptTeleportRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ObjectName", + "kind": "field", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.SimPosition", + "kind": "field", + "name": "SimPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "OptionsBlock", + "signature": "LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.#ctor", + "kind": "constructor", + "name": "OptionsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OptionsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SendPostcardPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SendPostcardPacket", + "signature": "LibreMetaverse.Packets.SendPostcardPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor", + "kind": "constructor", + "name": "SendPostcardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SendPostcardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SendPostcardPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendPostcardPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendPostcardPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.From", + "kind": "field", + "name": "From", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Msg", + "kind": "field", + "name": "Msg", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.PosGlobal", + "kind": "field", + "name": "PosGlobal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Subject", + "kind": "field", + "name": "Subject", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.To", + "kind": "field", + "name": "To", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SendXferPacketPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SendXferPacketPacket", + "signature": "LibreMetaverse.Packets.SendXferPacketPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.DataPacket", + "kind": "field", + "name": "DataPacket", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.XferID", + "kind": "field", + "name": "XferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor", + "kind": "constructor", + "name": "SendXferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SendXferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SendXferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataPacketBlock", + "signature": "LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.#ctor", + "kind": "constructor", + "name": "DataPacketBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataPacketBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "XferIDBlock", + "signature": "LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.Packet", + "kind": "field", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.#ctor", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "XferIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetAlwaysRunPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetAlwaysRunPacket", + "signature": "LibreMetaverse.Packets.SetAlwaysRunPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor", + "kind": "constructor", + "name": "SetAlwaysRunPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetAlwaysRunPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetAlwaysRunPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetAlwaysRunPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetAlwaysRunPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.AlwaysRun", + "kind": "field", + "name": "AlwaysRun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetCPURatioPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetCPURatioPacket", + "signature": "LibreMetaverse.Packets.SetCPURatioPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetCPURatioPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetCPURatioPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor", + "kind": "constructor", + "name": "SetCPURatioPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetCPURatioPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetCPURatioPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetCPURatioPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetCPURatioPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.SetCPURatioPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.Ratio", + "kind": "field", + "name": "Ratio", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetFollowCamPropertiesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetFollowCamPropertiesPacket", + "signature": "LibreMetaverse.Packets.SetFollowCamPropertiesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraProperty", + "kind": "field", + "name": "CameraProperty", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor", + "kind": "constructor", + "name": "SetFollowCamPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetFollowCamPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetFollowCamPropertiesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CameraPropertyBlock", + "signature": "LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.#ctor", + "kind": "constructor", + "name": "CameraPropertyBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CameraPropertyBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetGroupAcceptNoticesPacket", + "signature": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewData", + "kind": "field", + "name": "NewData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor", + "kind": "constructor", + "name": "SetGroupAcceptNoticesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetGroupAcceptNoticesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetGroupAcceptNoticesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.AcceptNotices", + "kind": "field", + "name": "AcceptNotices", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NewDataBlock", + "signature": "LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ListInProfile", + "kind": "field", + "name": "ListInProfile", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.#ctor", + "kind": "constructor", + "name": "NewDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NewDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupContributionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetGroupContributionPacket", + "signature": "LibreMetaverse.Packets.SetGroupContributionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor", + "kind": "constructor", + "name": "SetGroupContributionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetGroupContributionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetGroupContributionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.Contribution", + "kind": "field", + "name": "Contribution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetScriptRunningPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetScriptRunningPacket", + "signature": "LibreMetaverse.Packets.SetScriptRunningPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.Script", + "kind": "field", + "name": "Script", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor", + "kind": "constructor", + "name": "SetScriptRunningPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetScriptRunningPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetScriptRunningPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ScriptBlock", + "signature": "LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.Running", + "kind": "field", + "name": "Running", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.#ctor", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ScriptBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetSimPresenceInDatabasePacket", + "signature": "LibreMetaverse.Packets.SetSimPresenceInDatabasePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimData", + "kind": "field", + "name": "SimData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor", + "kind": "constructor", + "name": "SetSimPresenceInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetSimPresenceInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetSimPresenceInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimDataBlock", + "signature": "LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.AgentCount", + "kind": "field", + "name": "AgentCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.HostName", + "kind": "field", + "name": "HostName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.PID", + "kind": "field", + "name": "PID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.TimeToLive", + "kind": "field", + "name": "TimeToLive", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.#ctor", + "kind": "constructor", + "name": "SimDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetSimStatusInDatabasePacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetSimStatusInDatabasePacket", + "signature": "LibreMetaverse.Packets.SetSimStatusInDatabasePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor", + "kind": "constructor", + "name": "SetSimStatusInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetSimStatusInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetSimStatusInDatabasePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.AgentCount", + "kind": "field", + "name": "AgentCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.HostName", + "kind": "field", + "name": "HostName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.PID", + "kind": "field", + "name": "PID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.TimeToLive", + "kind": "field", + "name": "TimeToLive", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetStartLocationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetStartLocationPacket", + "signature": "LibreMetaverse.Packets.SetStartLocationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationData", + "kind": "field", + "name": "StartLocationData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor", + "kind": "constructor", + "name": "SetStartLocationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetStartLocationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetStartLocationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "StartLocationDataBlock", + "signature": "LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.LocationID", + "kind": "field", + "name": "LocationID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.LocationLookAt", + "kind": "field", + "name": "LocationLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.LocationPos", + "kind": "field", + "name": "LocationPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.#ctor", + "kind": "constructor", + "name": "StartLocationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartLocationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetStartLocationRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SetStartLocationRequestPacket", + "signature": "LibreMetaverse.Packets.SetStartLocationRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationData", + "kind": "field", + "name": "StartLocationData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor", + "kind": "constructor", + "name": "SetStartLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetStartLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SetStartLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "StartLocationDataBlock", + "signature": "LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.LocationID", + "kind": "field", + "name": "LocationID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.LocationLookAt", + "kind": "field", + "name": "LocationLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.LocationPos", + "kind": "field", + "name": "LocationPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.#ctor", + "kind": "constructor", + "name": "StartLocationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartLocationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimCrashedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimCrashedPacket", + "signature": "LibreMetaverse.Packets.SimCrashedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimCrashedPacket.DataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.Users", + "kind": "field", + "name": "Users", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimCrashedPacket.UsersBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor", + "kind": "constructor", + "name": "SimCrashedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimCrashedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimCrashedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimCrashedPacket.DataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlock", + "signature": "LibreMetaverse.Packets.SimCrashedPacket.DataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.RegionX", + "kind": "field", + "name": "RegionX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.RegionY", + "kind": "field", + "name": "RegionY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.#ctor", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UsersBlock", + "signature": "LibreMetaverse.Packets.SimCrashedPacket.UsersBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.#ctor", + "kind": "constructor", + "name": "UsersBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UsersBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimStatsPacket", + "signature": "LibreMetaverse.Packets.SimStatsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.PidStat", + "kind": "field", + "name": "PidStat", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimStatsPacket.PidStatBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.Region", + "kind": "field", + "name": "Region", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimStatsPacket.RegionBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionInfo", + "kind": "field", + "name": "RegionInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.Stat", + "kind": "field", + "name": "Stat", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimStatsPacket.StatBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor", + "kind": "constructor", + "name": "SimStatsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimStatsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimStatsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PidStatBlock", + "signature": "LibreMetaverse.Packets.SimStatsPacket.PidStatBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.PID", + "kind": "field", + "name": "PID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.#ctor", + "kind": "constructor", + "name": "PidStatBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PidStatBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatsPacket.RegionBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionBlock", + "signature": "LibreMetaverse.Packets.SimStatsPacket.RegionBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ObjectCapacity", + "kind": "field", + "name": "ObjectCapacity", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.RegionX", + "kind": "field", + "name": "RegionX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.RegionY", + "kind": "field", + "name": "RegionY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.#ctor", + "kind": "constructor", + "name": "RegionBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionInfoBlock", + "signature": "LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.RegionFlagsExtended", + "kind": "field", + "name": "RegionFlagsExtended", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.#ctor", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatsPacket.StatBlock", + "namespace": "LibreMetaverse.Packets", + "name": "StatBlock", + "signature": "LibreMetaverse.Packets.SimStatsPacket.StatBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.StatBlock.StatID", + "kind": "field", + "name": "StatID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.StatBlock.StatValue", + "kind": "field", + "name": "StatValue", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.#ctor", + "kind": "constructor", + "name": "StatBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StatBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.StatBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatusPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimStatusPacket", + "signature": "LibreMetaverse.Packets.SimStatusPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimFlags", + "kind": "field", + "name": "SimFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimStatus", + "kind": "field", + "name": "SimStatus", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor", + "kind": "constructor", + "name": "SimStatusPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimStatusPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimStatusPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimFlagsBlock", + "signature": "LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.#ctor", + "kind": "constructor", + "name": "SimFlagsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimFlagsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimStatusBlock", + "signature": "LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.CanAcceptAgents", + "kind": "field", + "name": "CanAcceptAgents", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.CanAcceptTasks", + "kind": "field", + "name": "CanAcceptTasks", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.#ctor", + "kind": "constructor", + "name": "SimStatusBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimStatusBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimWideDeletesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimWideDeletesPacket", + "signature": "LibreMetaverse.Packets.SimWideDeletesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor", + "kind": "constructor", + "name": "SimWideDeletesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimWideDeletesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimWideDeletesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorLoadPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorLoadPacket", + "signature": "LibreMetaverse.Packets.SimulatorLoadPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentList", + "kind": "field", + "name": "AgentList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoad", + "kind": "field", + "name": "SimulatorLoad", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor", + "kind": "constructor", + "name": "SimulatorLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentListBlock", + "signature": "LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.#ctor", + "kind": "constructor", + "name": "AgentListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorLoadBlock", + "signature": "LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.AgentCount", + "kind": "field", + "name": "AgentCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.CanAcceptAgents", + "kind": "field", + "name": "CanAcceptAgents", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.TimeDilation", + "kind": "field", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.#ctor", + "kind": "constructor", + "name": "SimulatorLoadBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorLoadBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorMapUpdatePacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorMapUpdatePacket", + "signature": "LibreMetaverse.Packets.SimulatorMapUpdatePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapData", + "kind": "field", + "name": "MapData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor", + "kind": "constructor", + "name": "SimulatorMapUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorMapUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorMapUpdatePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorMapUpdatePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorMapUpdatePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MapDataBlock", + "signature": "LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.#ctor", + "kind": "constructor", + "name": "MapDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorPresentAtLocationPacket", + "signature": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlock", + "kind": "field", + "name": "NeighborBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlock", + "kind": "field", + "name": "SimulatorBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlock", + "kind": "field", + "name": "SimulatorPublicHostBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlock", + "kind": "field", + "name": "TelehubBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor", + "kind": "constructor", + "name": "SimulatorPresentAtLocationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorPresentAtLocationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorPresentAtLocationPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NeighborBlockBlock", + "signature": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.#ctor", + "kind": "constructor", + "name": "NeighborBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NeighborBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorBlockBlock", + "signature": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.#ctor", + "kind": "constructor", + "name": "SimulatorBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorPublicHostBlockBlock", + "signature": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.GridX", + "kind": "field", + "name": "GridX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.GridY", + "kind": "field", + "name": "GridY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.Port", + "kind": "field", + "name": "Port", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.SimulatorIP", + "kind": "field", + "name": "SimulatorIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.#ctor", + "kind": "constructor", + "name": "SimulatorPublicHostBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorPublicHostBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TelehubBlockBlock", + "signature": "LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.HasTelehub", + "kind": "field", + "name": "HasTelehub", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.TelehubPos", + "kind": "field", + "name": "TelehubPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.#ctor", + "kind": "constructor", + "name": "TelehubBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TelehubBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorReadyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorReadyPacket", + "signature": "LibreMetaverse.Packets.SimulatorReadyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlock", + "kind": "field", + "name": "SimulatorBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlock", + "kind": "field", + "name": "TelehubBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor", + "kind": "constructor", + "name": "SimulatorReadyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorReadyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorReadyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorBlockBlock", + "signature": "LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ParentEstateID", + "kind": "field", + "name": "ParentEstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.RegionFlags", + "kind": "field", + "name": "RegionFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.#ctor", + "kind": "constructor", + "name": "SimulatorBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TelehubBlockBlock", + "signature": "LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.HasTelehub", + "kind": "field", + "name": "HasTelehub", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.TelehubPos", + "kind": "field", + "name": "TelehubPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.#ctor", + "kind": "constructor", + "name": "TelehubBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TelehubBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorSetMapPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorSetMapPacket", + "signature": "LibreMetaverse.Packets.SimulatorSetMapPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorSetMapPacket.MapData", + "kind": "field", + "name": "MapData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor", + "kind": "constructor", + "name": "SimulatorSetMapPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorSetMapPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorSetMapPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorSetMapPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorSetMapPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MapDataBlock", + "signature": "LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.MapImage", + "kind": "field", + "name": "MapImage", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.#ctor", + "kind": "constructor", + "name": "MapDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MapDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorShutdownRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorShutdownRequestPacket", + "signature": "LibreMetaverse.Packets.SimulatorShutdownRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor", + "kind": "constructor", + "name": "SimulatorShutdownRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorShutdownRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorShutdownRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorViewerTimeMessagePacket", + "signature": "LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfo", + "kind": "field", + "name": "TimeInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor", + "kind": "constructor", + "name": "SimulatorViewerTimeMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorViewerTimeMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorViewerTimeMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TimeInfoBlock", + "signature": "LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SecPerDay", + "kind": "field", + "name": "SecPerDay", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SecPerYear", + "kind": "field", + "name": "SecPerYear", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SunAngVelocity", + "kind": "field", + "name": "SunAngVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SunDirection", + "kind": "field", + "name": "SunDirection", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SunPhase", + "kind": "field", + "name": "SunPhase", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.UsecSinceStart", + "kind": "field", + "name": "UsecSinceStart", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.#ctor", + "kind": "constructor", + "name": "TimeInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TimeInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SoundTriggerPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SoundTriggerPacket", + "signature": "LibreMetaverse.Packets.SoundTriggerPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundData", + "kind": "field", + "name": "SoundData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor", + "kind": "constructor", + "name": "SoundTriggerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SoundTriggerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SoundTriggerPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SoundTriggerPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SoundTriggerPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SoundDataBlock", + "signature": "LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Gain", + "kind": "field", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Handle", + "kind": "field", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.SoundID", + "kind": "field", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.#ctor", + "kind": "constructor", + "name": "SoundDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SoundDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartAuctionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "StartAuctionPacket", + "signature": "LibreMetaverse.Packets.StartAuctionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor", + "kind": "constructor", + "name": "StartAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartGroupProposalPacket", + "namespace": "LibreMetaverse.Packets", + "name": "StartGroupProposalPacket", + "signature": "LibreMetaverse.Packets.StartGroupProposalPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalData", + "kind": "field", + "name": "ProposalData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor", + "kind": "constructor", + "name": "StartGroupProposalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartGroupProposalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartGroupProposalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ProposalDataBlock", + "signature": "LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Majority", + "kind": "field", + "name": "Majority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ProposalText", + "kind": "field", + "name": "ProposalText", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Quorum", + "kind": "field", + "name": "Quorum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.#ctor", + "kind": "constructor", + "name": "ProposalDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ProposalDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartLurePacket", + "namespace": "LibreMetaverse.Packets", + "name": "StartLurePacket", + "signature": "LibreMetaverse.Packets.StartLurePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartLurePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartLurePacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.TargetData", + "kind": "field", + "name": "TargetData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartLurePacket.TargetDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor", + "kind": "constructor", + "name": "StartLurePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartLurePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartLurePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartLurePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartLurePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.StartLurePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartLurePacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.StartLurePacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.InfoBlock.LureType", + "kind": "field", + "name": "LureType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.InfoBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartLurePacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TargetDataBlock", + "signature": "LibreMetaverse.Packets.StartLurePacket.TargetDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.TargetID", + "kind": "field", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.#ctor", + "kind": "constructor", + "name": "TargetDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TargetDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartPingCheckPacket", + "namespace": "LibreMetaverse.Packets", + "name": "StartPingCheckPacket", + "signature": "LibreMetaverse.Packets.StartPingCheckPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartPingCheckPacket.PingID", + "kind": "field", + "name": "PingID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor", + "kind": "constructor", + "name": "StartPingCheckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartPingCheckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StartPingCheckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartPingCheckPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartPingCheckPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock", + "namespace": "LibreMetaverse.Packets", + "name": "PingIDBlock", + "signature": "LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.OldestUnacked", + "kind": "field", + "name": "OldestUnacked", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.PingID", + "kind": "field", + "name": "PingID", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.#ctor", + "kind": "constructor", + "name": "PingIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "PingIDBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StateSavePacket", + "namespace": "LibreMetaverse.Packets", + "name": "StateSavePacket", + "signature": "LibreMetaverse.Packets.StateSavePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StateSavePacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StateSavePacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StateSavePacket.DataBlock", + "kind": "field", + "name": "DataBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.StateSavePacket.DataBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor", + "kind": "constructor", + "name": "StateSavePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StateSavePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "StateSavePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StateSavePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StateSavePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.StateSavePacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DataBlockBlock", + "signature": "LibreMetaverse.Packets.StateSavePacket.DataBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.Filename", + "kind": "field", + "name": "Filename", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.#ctor", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DataBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SubscribeLoadPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SubscribeLoadPacket", + "signature": "LibreMetaverse.Packets.SubscribeLoadPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor", + "kind": "constructor", + "name": "SubscribeLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SubscribeLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SubscribeLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SubscribeLoadPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SubscribeLoadPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SystemKickUserPacket", + "namespace": "LibreMetaverse.Packets", + "name": "SystemKickUserPacket", + "signature": "LibreMetaverse.Packets.SystemKickUserPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfo", + "kind": "field", + "name": "AgentInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor", + "kind": "constructor", + "name": "SystemKickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SystemKickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SystemKickUserPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemKickUserPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemKickUserPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentInfoBlock", + "signature": "LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.#ctor", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SystemMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "SystemMessagePacket", + "signature": "LibreMetaverse.Packets.SystemMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.MethodData", + "kind": "field", + "name": "MethodData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.ParamList", + "kind": "field", + "name": "ParamList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor", + "kind": "constructor", + "name": "SystemMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SystemMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SystemMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MethodDataBlock", + "signature": "LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Digest", + "kind": "field", + "name": "Digest", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Invoice", + "kind": "field", + "name": "Invoice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Method", + "kind": "field", + "name": "Method", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.#ctor", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MethodDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParamListBlock", + "signature": "LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.Parameter", + "kind": "field", + "name": "Parameter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.#ctor", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParamListBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TallyVotesPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TallyVotesPacket", + "signature": "LibreMetaverse.Packets.TallyVotesPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor", + "kind": "constructor", + "name": "TallyVotesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TallyVotesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TallyVotesPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TallyVotesPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TallyVotesPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TelehubInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TelehubInfoPacket", + "signature": "LibreMetaverse.Packets.TelehubInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlock", + "kind": "field", + "name": "SpawnPointBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlock", + "kind": "field", + "name": "TelehubBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor", + "kind": "constructor", + "name": "TelehubInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TelehubInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TelehubInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SpawnPointBlockBlock", + "signature": "LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.SpawnPointPos", + "kind": "field", + "name": "SpawnPointPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.#ctor", + "kind": "constructor", + "name": "SpawnPointBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SpawnPointBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TelehubBlockBlock", + "signature": "LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ObjectName", + "kind": "field", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.TelehubPos", + "kind": "field", + "name": "TelehubPos", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.TelehubRot", + "kind": "field", + "name": "TelehubRot", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.#ctor", + "kind": "constructor", + "name": "TelehubBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TelehubBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportCancelPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportCancelPacket", + "signature": "LibreMetaverse.Packets.TeleportCancelPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportCancelPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor", + "kind": "constructor", + "name": "TeleportCancelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportCancelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportCancelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportCancelPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportCancelPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportFailedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportFailedPacket", + "signature": "LibreMetaverse.Packets.TeleportFailedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfo", + "kind": "field", + "name": "AlertInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor", + "kind": "constructor", + "name": "TeleportFailedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportFailedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportFailedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AlertInfoBlock", + "signature": "LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ExtraParams", + "kind": "field", + "name": "ExtraParams", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.#ctor", + "kind": "constructor", + "name": "AlertInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AlertInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportFinishPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportFinishPacket", + "signature": "LibreMetaverse.Packets.TeleportFinishPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor", + "kind": "constructor", + "name": "TeleportFinishPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportFinishPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportFinishPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFinishPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFinishPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.LocationID", + "kind": "field", + "name": "LocationID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SeedCapability", + "kind": "field", + "name": "SeedCapability", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SimIP", + "kind": "field", + "name": "SimIP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SimPort", + "kind": "field", + "name": "SimPort", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.TeleportFlags", + "kind": "field", + "name": "TeleportFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportLandingStatusChangedPacket", + "signature": "LibreMetaverse.Packets.TeleportLandingStatusChangedPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionData", + "kind": "field", + "name": "RegionData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor", + "kind": "constructor", + "name": "TeleportLandingStatusChangedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLandingStatusChangedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLandingStatusChangedPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "RegionDataBlock", + "signature": "LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.#ctor", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "RegionDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLandmarkRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportLandmarkRequestPacket", + "signature": "LibreMetaverse.Packets.TeleportLandmarkRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor", + "kind": "constructor", + "name": "TeleportLandmarkRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLandmarkRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLandmarkRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.LandmarkID", + "kind": "field", + "name": "LandmarkID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLocalPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportLocalPacket", + "signature": "LibreMetaverse.Packets.TeleportLocalPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor", + "kind": "constructor", + "name": "TeleportLocalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLocalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLocalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocalPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocalPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.LocationID", + "kind": "field", + "name": "LocationID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.TeleportFlags", + "kind": "field", + "name": "TeleportFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLocationRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportLocationRequestPacket", + "signature": "LibreMetaverse.Packets.TeleportLocationRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor", + "kind": "constructor", + "name": "TeleportLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLocationRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLureRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportLureRequestPacket", + "signature": "LibreMetaverse.Packets.TeleportLureRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLureRequestPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor", + "kind": "constructor", + "name": "TeleportLureRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLureRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportLureRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLureRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLureRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.LureID", + "kind": "field", + "name": "LureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.TeleportFlags", + "kind": "field", + "name": "TeleportFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportProgressPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportProgressPacket", + "signature": "LibreMetaverse.Packets.TeleportProgressPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor", + "kind": "constructor", + "name": "TeleportProgressPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportProgressPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportProgressPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.TeleportFlags", + "kind": "field", + "name": "TeleportFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportRequestPacket", + "signature": "LibreMetaverse.Packets.TeleportRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor", + "kind": "constructor", + "name": "TeleportRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.LookAt", + "kind": "field", + "name": "LookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportStartPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TeleportStartPacket", + "signature": "LibreMetaverse.Packets.TeleportStartPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportStartPacket.Info", + "kind": "field", + "name": "Info", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TeleportStartPacket.InfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor", + "kind": "constructor", + "name": "TeleportStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TeleportStartPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportStartPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportStartPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlock", + "signature": "LibreMetaverse.Packets.TeleportStartPacket.InfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.TeleportFlags", + "kind": "field", + "name": "TeleportFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.#ctor", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TerminateFriendshipPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TerminateFriendshipPacket", + "signature": "LibreMetaverse.Packets.TerminateFriendshipPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlock", + "kind": "field", + "name": "ExBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor", + "kind": "constructor", + "name": "TerminateFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TerminateFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TerminateFriendshipPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ExBlockBlock", + "signature": "LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.OtherID", + "kind": "field", + "name": "OtherID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.#ctor", + "kind": "constructor", + "name": "ExBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ExBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TestMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "TestMessagePacket", + "signature": "LibreMetaverse.Packets.TestMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlock", + "kind": "field", + "name": "NeighborBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.TestBlock1", + "kind": "field", + "name": "TestBlock1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor", + "kind": "constructor", + "name": "TestMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TestMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TestMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NeighborBlockBlock", + "signature": "LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Test0", + "kind": "field", + "name": "Test0", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Test1", + "kind": "field", + "name": "Test1", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Test2", + "kind": "field", + "name": "Test2", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.#ctor", + "kind": "constructor", + "name": "NeighborBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NeighborBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block", + "namespace": "LibreMetaverse.Packets", + "name": "TestBlock1Block", + "signature": "LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.Test1", + "kind": "field", + "name": "Test1", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.#ctor", + "kind": "constructor", + "name": "TestBlock1Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TestBlock1Block", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TrackAgentPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TrackAgentPacket", + "signature": "LibreMetaverse.Packets.TrackAgentPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TrackAgentPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TrackAgentPacket.TargetData", + "kind": "field", + "name": "TargetData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor", + "kind": "constructor", + "name": "TrackAgentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TrackAgentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TrackAgentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TargetDataBlock", + "signature": "LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.PreyID", + "kind": "field", + "name": "PreyID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.#ctor", + "kind": "constructor", + "name": "TargetDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TargetDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferAbortPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TransferAbortPacket", + "signature": "LibreMetaverse.Packets.TransferAbortPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferAbortPacket.TransferInfo", + "kind": "field", + "name": "TransferInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor", + "kind": "constructor", + "name": "TransferAbortPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferAbortPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferAbortPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferAbortPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferAbortPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransferInfoBlock", + "signature": "LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ChannelType", + "kind": "field", + "name": "ChannelType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.TransferID", + "kind": "field", + "name": "TransferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.#ctor", + "kind": "constructor", + "name": "TransferInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TransferInfoPacket", + "signature": "LibreMetaverse.Packets.TransferInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfo", + "kind": "field", + "name": "TransferInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor", + "kind": "constructor", + "name": "TransferInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransferInfoBlock", + "signature": "LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ChannelType", + "kind": "field", + "name": "ChannelType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Params", + "kind": "field", + "name": "Params", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.TargetType", + "kind": "field", + "name": "TargetType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.TransferID", + "kind": "field", + "name": "TransferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.#ctor", + "kind": "constructor", + "name": "TransferInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInventoryAckPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TransferInventoryAckPacket", + "signature": "LibreMetaverse.Packets.TransferInventoryAckPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlock", + "kind": "field", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor", + "kind": "constructor", + "name": "TransferInventoryAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInventoryAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInventoryAckPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryAckPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryAckPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlockBlock", + "signature": "LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.InventoryID", + "kind": "field", + "name": "InventoryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.#ctor", + "kind": "constructor", + "name": "InfoBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TransferInventoryPacket", + "signature": "LibreMetaverse.Packets.TransferInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlock", + "kind": "field", + "name": "InfoBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlock", + "kind": "field", + "name": "InventoryBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlock", + "kind": "field", + "name": "ValidationBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor", + "kind": "constructor", + "name": "TransferInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InfoBlockBlock", + "signature": "LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.#ctor", + "kind": "constructor", + "name": "InfoBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InfoBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryBlockBlock", + "signature": "LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.InventoryID", + "kind": "field", + "name": "InventoryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.#ctor", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ValidationBlockBlock", + "signature": "LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.NeedsValidation", + "kind": "field", + "name": "NeedsValidation", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.#ctor", + "kind": "constructor", + "name": "ValidationBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ValidationBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferPacketPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TransferPacketPacket", + "signature": "LibreMetaverse.Packets.TransferPacketPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferData", + "kind": "field", + "name": "TransferData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor", + "kind": "constructor", + "name": "TransferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferPacketPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferPacketPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferPacketPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransferDataBlock", + "signature": "LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ChannelType", + "kind": "field", + "name": "ChannelType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Packet", + "kind": "field", + "name": "Packet", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.TransferID", + "kind": "field", + "name": "TransferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.#ctor", + "kind": "constructor", + "name": "TransferDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "TransferRequestPacket", + "signature": "LibreMetaverse.Packets.TransferRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfo", + "kind": "field", + "name": "TransferInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor", + "kind": "constructor", + "name": "TransferRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "TransferInfoBlock", + "signature": "LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ChannelType", + "kind": "field", + "name": "ChannelType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.Params", + "kind": "field", + "name": "Params", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.SourceType", + "kind": "field", + "name": "SourceType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.TransferID", + "kind": "field", + "name": "TransferID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.#ctor", + "kind": "constructor", + "name": "TransferInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "TransferInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDGroupNameReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDGroupNameReplyPacket", + "signature": "LibreMetaverse.Packets.UUIDGroupNameReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlock", + "kind": "field", + "name": "UUIDNameBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor", + "kind": "constructor", + "name": "UUIDGroupNameReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDGroupNameReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDGroupNameReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDNameBlockBlock", + "signature": "LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.GroupName", + "kind": "field", + "name": "GroupName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.#ctor", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDGroupNameRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDGroupNameRequestPacket", + "signature": "LibreMetaverse.Packets.UUIDGroupNameRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlock", + "kind": "field", + "name": "UUIDNameBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor", + "kind": "constructor", + "name": "UUIDGroupNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDGroupNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDGroupNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDNameBlockBlock", + "signature": "LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.#ctor", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDNameReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDNameReplyPacket", + "signature": "LibreMetaverse.Packets.UUIDNameReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlock", + "kind": "field", + "name": "UUIDNameBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor", + "kind": "constructor", + "name": "UUIDNameReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDNameReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDNameReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDNameBlockBlock", + "signature": "LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FirstName", + "kind": "field", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.LastName", + "kind": "field", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.#ctor", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDNameRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDNameRequestPacket", + "signature": "LibreMetaverse.Packets.UUIDNameRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlock", + "kind": "field", + "name": "UUIDNameBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor", + "kind": "constructor", + "name": "UUIDNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDNameRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDNameRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UUIDNameBlockBlock", + "signature": "LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.#ctor", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UUIDNameBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UndoLandPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UndoLandPacket", + "signature": "LibreMetaverse.Packets.UndoLandPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UndoLandPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor", + "kind": "constructor", + "name": "UndoLandPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UndoLandPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UndoLandPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoLandPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoLandPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UndoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UndoPacket", + "signature": "LibreMetaverse.Packets.UndoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UndoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UndoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UndoPacket.ObjectData", + "kind": "field", + "name": "ObjectData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UndoPacket.ObjectDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor", + "kind": "constructor", + "name": "UndoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UndoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UndoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UndoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UndoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ObjectDataBlock", + "signature": "LibreMetaverse.Packets.UndoPacket.ObjectDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.#ctor", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ObjectDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UnsubscribeLoadPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UnsubscribeLoadPacket", + "signature": "LibreMetaverse.Packets.UnsubscribeLoadPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor", + "kind": "constructor", + "name": "UnsubscribeLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UnsubscribeLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UnsubscribeLoadPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UnsubscribeLoadPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UnsubscribeLoadPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateAttachmentPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateAttachmentPacket", + "signature": "LibreMetaverse.Packets.UpdateAttachmentPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlock", + "kind": "field", + "name": "AttachmentBlock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationData", + "kind": "field", + "name": "OperationData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor", + "kind": "constructor", + "name": "UpdateAttachmentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateAttachmentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateAttachmentPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AttachmentBlockBlock", + "signature": "LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.AttachmentPoint", + "kind": "field", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.#ctor", + "kind": "constructor", + "name": "AttachmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AttachmentBlockBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "OperationDataBlock", + "signature": "LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.AddItem", + "kind": "field", + "name": "AddItem", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.UseExistingAsset", + "kind": "field", + "name": "UseExistingAsset", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.#ctor", + "kind": "constructor", + "name": "OperationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "OperationDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateCreateInventoryItemPacket", + "signature": "LibreMetaverse.Packets.UpdateCreateInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "UpdateCreateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateCreateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateCreateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.SimApproved", + "kind": "field", + "name": "SimApproved", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.AssetID", + "kind": "field", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateGroupInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateGroupInfoPacket", + "signature": "LibreMetaverse.Packets.UpdateGroupInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupData", + "kind": "field", + "name": "GroupData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor", + "kind": "constructor", + "name": "UpdateGroupInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateGroupInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateGroupInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "GroupDataBlock", + "signature": "LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.Charter", + "kind": "field", + "name": "Charter", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.InsigniaID", + "kind": "field", + "name": "InsigniaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.MembershipFee", + "kind": "field", + "name": "MembershipFee", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.OpenEnrollment", + "kind": "field", + "name": "OpenEnrollment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ShowInList", + "kind": "field", + "name": "ShowInList", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.#ctor", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "GroupDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateInventoryFolderPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateInventoryFolderPacket", + "signature": "LibreMetaverse.Packets.UpdateInventoryFolderPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderData", + "kind": "field", + "name": "FolderData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor", + "kind": "constructor", + "name": "UpdateInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateInventoryFolderPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FolderDataBlock", + "signature": "LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.#ctor", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FolderDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateInventoryItemPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateInventoryItemPacket", + "signature": "LibreMetaverse.Packets.UpdateInventoryItemPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor", + "kind": "constructor", + "name": "UpdateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateInventoryItemPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CallbackID", + "kind": "field", + "name": "CallbackID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateMuteListEntryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateMuteListEntryPacket", + "signature": "LibreMetaverse.Packets.UpdateMuteListEntryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteData", + "kind": "field", + "name": "MuteData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor", + "kind": "constructor", + "name": "UpdateMuteListEntryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateMuteListEntryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateMuteListEntryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MuteDataBlock", + "signature": "LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteFlags", + "kind": "field", + "name": "MuteFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteID", + "kind": "field", + "name": "MuteID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteName", + "kind": "field", + "name": "MuteName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteType", + "kind": "field", + "name": "MuteType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.#ctor", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MuteDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateParcelPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateParcelPacket", + "signature": "LibreMetaverse.Packets.UpdateParcelPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor", + "kind": "constructor", + "name": "UpdateParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateParcelPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateParcelPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateParcelPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.AllowPublish", + "kind": "field", + "name": "AllowPublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.AuthorizedBuyerID", + "kind": "field", + "name": "AuthorizedBuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.IsForSale", + "kind": "field", + "name": "IsForSale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.MaturePublish", + "kind": "field", + "name": "MaturePublish", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.MusicURL", + "kind": "field", + "name": "MusicURL", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.RegionX", + "kind": "field", + "name": "RegionX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.RegionY", + "kind": "field", + "name": "RegionY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ShowDir", + "kind": "field", + "name": "ShowDir", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.UserLocation", + "kind": "field", + "name": "UserLocation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateSimulatorPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateSimulatorPacket", + "signature": "LibreMetaverse.Packets.UpdateSimulatorPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfo", + "kind": "field", + "name": "SimulatorInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor", + "kind": "constructor", + "name": "UpdateSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateSimulatorPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateSimulatorPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateSimulatorPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock", + "namespace": "LibreMetaverse.Packets", + "name": "SimulatorInfoBlock", + "signature": "LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.EstateID", + "kind": "field", + "name": "EstateID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.SimAccess", + "kind": "field", + "name": "SimAccess", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.#ctor", + "kind": "constructor", + "name": "SimulatorInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "SimulatorInfoBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateTaskInventoryPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateTaskInventoryPacket", + "signature": "LibreMetaverse.Packets.UpdateTaskInventoryPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryData", + "kind": "field", + "name": "InventoryData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateData", + "kind": "field", + "name": "UpdateData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor", + "kind": "constructor", + "name": "UpdateTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateTaskInventoryPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "InventoryDataBlock", + "signature": "LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.GroupOwned", + "kind": "field", + "name": "GroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.InvType", + "kind": "field", + "name": "InvType", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.TransactionID", + "kind": "field", + "name": "TransactionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.#ctor", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "InventoryDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateDataBlock", + "signature": "LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.Key", + "kind": "field", + "name": "Key", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.#ctor", + "kind": "constructor", + "name": "UpdateDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateUserInfoPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UpdateUserInfoPacket", + "signature": "LibreMetaverse.Packets.UpdateUserInfoPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.UserData", + "kind": "field", + "name": "UserData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor", + "kind": "constructor", + "name": "UpdateUserInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateUserInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UpdateUserInfoPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UserDataBlock", + "signature": "LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.DirectoryVisibility", + "kind": "field", + "name": "DirectoryVisibility", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.IMViaEMail", + "kind": "field", + "name": "IMViaEMail", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.#ctor", + "kind": "constructor", + "name": "UserDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UseCachedMuteListPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UseCachedMuteListPacket", + "signature": "LibreMetaverse.Packets.UseCachedMuteListPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor", + "kind": "constructor", + "name": "UseCachedMuteListPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UseCachedMuteListPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UseCachedMuteListPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UseCachedMuteListPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UseCachedMuteListPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UseCircuitCodePacket", + "namespace": "LibreMetaverse.Packets", + "name": "UseCircuitCodePacket", + "signature": "LibreMetaverse.Packets.UseCircuitCodePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCode", + "kind": "field", + "name": "CircuitCode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor", + "kind": "constructor", + "name": "UseCircuitCodePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UseCircuitCodePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UseCircuitCodePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UseCircuitCodePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UseCircuitCodePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock", + "namespace": "LibreMetaverse.Packets", + "name": "CircuitCodeBlock", + "signature": "LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.Code", + "kind": "field", + "name": "Code", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.#ctor", + "kind": "constructor", + "name": "CircuitCodeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "CircuitCodeBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserInfoReplyPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UserInfoReplyPacket", + "signature": "LibreMetaverse.Packets.UserInfoReplyPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserData", + "kind": "field", + "name": "UserData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor", + "kind": "constructor", + "name": "UserInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoReplyPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "UserDataBlock", + "signature": "LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.DirectoryVisibility", + "kind": "field", + "name": "DirectoryVisibility", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.EMail", + "kind": "field", + "name": "EMail", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.IMViaEMail", + "kind": "field", + "name": "IMViaEMail", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.#ctor", + "kind": "constructor", + "name": "UserDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserInfoRequestPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UserInfoRequestPacket", + "signature": "LibreMetaverse.Packets.UserInfoRequestPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoRequestPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor", + "kind": "constructor", + "name": "UserInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserInfoRequestPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoRequestPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoRequestPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserReportInternalPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UserReportInternalPacket", + "signature": "LibreMetaverse.Packets.UserReportInternalPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportData", + "kind": "field", + "name": "ReportData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor", + "kind": "constructor", + "name": "UserReportInternalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserReportInternalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserReportInternalPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportInternalPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportInternalPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReportDataBlock", + "signature": "LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.AbuseRegionID", + "kind": "field", + "name": "AbuseRegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.AbuseRegionName", + "kind": "field", + "name": "AbuseRegionName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.AbuserID", + "kind": "field", + "name": "AbuserID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.AgentPosition", + "kind": "field", + "name": "AgentPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Details", + "kind": "field", + "name": "Details", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.LastOwnerID", + "kind": "field", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ReportType", + "kind": "field", + "name": "ReportType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ReporterID", + "kind": "field", + "name": "ReporterID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ScreenshotID", + "kind": "field", + "name": "ScreenshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Summary", + "kind": "field", + "name": "Summary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.VersionString", + "kind": "field", + "name": "VersionString", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ViewerPosition", + "kind": "field", + "name": "ViewerPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.#ctor", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserReportPacket", + "namespace": "LibreMetaverse.Packets", + "name": "UserReportPacket", + "signature": "LibreMetaverse.Packets.UserReportPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UserReportPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportData", + "kind": "field", + "name": "ReportData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.UserReportPacket.ReportDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor", + "kind": "constructor", + "name": "UserReportPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserReportPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "UserReportPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.UserReportPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ReportDataBlock", + "signature": "LibreMetaverse.Packets.UserReportPacket.ReportDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.AbuseRegionID", + "kind": "field", + "name": "AbuseRegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.AbuseRegionName", + "kind": "field", + "name": "AbuseRegionName", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.AbuserID", + "kind": "field", + "name": "AbuserID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.CheckFlags", + "kind": "field", + "name": "CheckFlags", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Details", + "kind": "field", + "name": "Details", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ReportType", + "kind": "field", + "name": "ReportType", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ScreenshotID", + "kind": "field", + "name": "ScreenshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Summary", + "kind": "field", + "name": "Summary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.VersionString", + "kind": "field", + "name": "VersionString", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.#ctor", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ReportDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.VelocityInterpolateOffPacket", + "namespace": "LibreMetaverse.Packets", + "name": "VelocityInterpolateOffPacket", + "signature": "LibreMetaverse.Packets.VelocityInterpolateOffPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor", + "kind": "constructor", + "name": "VelocityInterpolateOffPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VelocityInterpolateOffPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VelocityInterpolateOffPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOffPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOffPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.VelocityInterpolateOnPacket", + "namespace": "LibreMetaverse.Packets", + "name": "VelocityInterpolateOnPacket", + "signature": "LibreMetaverse.Packets.VelocityInterpolateOnPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor", + "kind": "constructor", + "name": "VelocityInterpolateOnPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VelocityInterpolateOnPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "VelocityInterpolateOnPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOnPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOnPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerEffectPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ViewerEffectPacket", + "signature": "LibreMetaverse.Packets.ViewerEffectPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.Effect", + "kind": "field", + "name": "Effect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor", + "kind": "constructor", + "name": "ViewerEffectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerEffectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerEffectPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock", + "namespace": "LibreMetaverse.Packets", + "name": "EffectBlock", + "signature": "LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Color", + "kind": "field", + "name": "Color", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.TypeData", + "kind": "field", + "name": "TypeData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.#ctor", + "kind": "constructor", + "name": "EffectBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "EffectBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerFrozenMessagePacket", + "namespace": "LibreMetaverse.Packets", + "name": "ViewerFrozenMessagePacket", + "signature": "LibreMetaverse.Packets.ViewerFrozenMessagePacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenData", + "kind": "field", + "name": "FrozenData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor", + "kind": "constructor", + "name": "ViewerFrozenMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerFrozenMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerFrozenMessagePacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerFrozenMessagePacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerFrozenMessagePacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FrozenDataBlock", + "signature": "LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.#ctor", + "kind": "constructor", + "name": "FrozenDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FrozenDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStartAuctionPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ViewerStartAuctionPacket", + "signature": "LibreMetaverse.Packets.ViewerStartAuctionPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelData", + "kind": "field", + "name": "ParcelData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor", + "kind": "constructor", + "name": "ViewerStartAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerStartAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerStartAuctionPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "ParcelDataBlock", + "signature": "LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.#ctor", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ParcelDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStatsPacket", + "namespace": "LibreMetaverse.Packets", + "name": "ViewerStatsPacket", + "signature": "LibreMetaverse.Packets.ViewerStatsPacket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.Packet", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentData", + "kind": "field", + "name": "AgentData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotals", + "kind": "field", + "name": "DownloadTotals", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStats", + "kind": "field", + "name": "FailStats", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.MiscStats", + "kind": "field", + "name": "MiscStats", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStats", + "kind": "field", + "name": "NetStats", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor", + "kind": "constructor", + "name": "ViewerStatsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerStatsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "head", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "ViewerStatsPacket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "header", + "type": "LibreMetaverse.Packets.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "packetEnd", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zeroBuffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "PacketFromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_body", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.PacketToOSD", + "kind": "method", + "name": "PacketToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytes", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytesMultiple", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "kind": "method", + "name": "ToBytesMultiple", + "static": false, + "visibility": "public", + "type": "System.Byte[][]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pool", + "type": "LibreMetaverse.Interfaces.IByteBufferPool", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizes", + "type": "System.Int32[]\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.UsesBufferPooling", + "kind": "property", + "name": "UsesBufferPooling", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock", + "namespace": "LibreMetaverse.Packets", + "name": "AgentDataBlock", + "signature": "LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.AgentsInView", + "kind": "field", + "name": "AgentsInView", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FPS", + "kind": "field", + "name": "FPS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.IP", + "kind": "field", + "name": "IP", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.MetersTraveled", + "kind": "field", + "name": "MetersTraveled", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.Ping", + "kind": "field", + "name": "Ping", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.RegionsVisited", + "kind": "field", + "name": "RegionsVisited", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.RunTime", + "kind": "field", + "name": "RunTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SessionID", + "kind": "field", + "name": "SessionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SimFPS", + "kind": "field", + "name": "SimFPS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.StartTime", + "kind": "field", + "name": "StartTime", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysCPU", + "kind": "field", + "name": "SysCPU", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysGPU", + "kind": "field", + "name": "SysGPU", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysOS", + "kind": "field", + "name": "SysOS", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysRAM", + "kind": "field", + "name": "SysRAM", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.#ctor", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "AgentDataBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "DownloadTotalsBlock", + "signature": "LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.Objects", + "kind": "field", + "name": "Objects", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.Textures", + "kind": "field", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.World", + "kind": "field", + "name": "World", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.#ctor", + "kind": "constructor", + "name": "DownloadTotalsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "DownloadTotalsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "FailStatsBlock", + "signature": "LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Dropped", + "kind": "field", + "name": "Dropped", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FailedResends", + "kind": "field", + "name": "FailedResends", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Invalid", + "kind": "field", + "name": "Invalid", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.OffCircuit", + "kind": "field", + "name": "OffCircuit", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Resent", + "kind": "field", + "name": "Resent", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.SendPacket", + "kind": "field", + "name": "SendPacket", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.#ctor", + "kind": "constructor", + "name": "FailStatsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "FailStatsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "MiscStatsBlock", + "signature": "LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.#ctor", + "kind": "constructor", + "name": "MiscStatsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "MiscStatsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock", + "namespace": "LibreMetaverse.Packets", + "name": "NetStatsBlock", + "signature": "LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Packets.PacketBlock", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Bytes", + "kind": "field", + "name": "Bytes", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Compressed", + "kind": "field", + "name": "Compressed", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Packets", + "kind": "field", + "name": "Packets", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Savings", + "kind": "field", + "name": "Savings", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.#ctor", + "kind": "constructor", + "name": "NetStatsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.#ctor(System.Byte[],System.Int32@)", + "kind": "constructor", + "name": "NetStatsBlock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "FromOSD", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "_map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "i", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.ToOSD", + "kind": "method", + "name": "ToOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Length", + "kind": "property", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Parcel", + "namespace": "LibreMetaverse", + "name": "Parcel", + "signature": "LibreMetaverse.Parcel", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Parcel.AABBMax", + "kind": "field", + "name": "AABBMax", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.AABBMin", + "kind": "field", + "name": "AABBMin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.AccessBlackList", + "kind": "field", + "name": "AccessBlackList", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.AccessWhiteList", + "kind": "field", + "name": "AccessWhiteList", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.AnyAVSounds", + "kind": "field", + "name": "AnyAVSounds", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Area", + "kind": "field", + "name": "Area", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.AuctionID", + "kind": "field", + "name": "AuctionID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.AuthBuyerID", + "kind": "field", + "name": "AuthBuyerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Bitmap", + "kind": "field", + "name": "Bitmap", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.ClaimDate", + "kind": "field", + "name": "ClaimDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.ClaimPrice", + "kind": "field", + "name": "ClaimPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.GroupAVSounds", + "kind": "field", + "name": "GroupAVSounds", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.GroupPrims", + "kind": "field", + "name": "GroupPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Landing", + "kind": "field", + "name": "Landing", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LandingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.MaxPrims", + "kind": "field", + "name": "MaxPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Media", + "kind": "field", + "name": "Media", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelMedia", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.MusicURL", + "kind": "field", + "name": "MusicURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.ObscureMedia", + "kind": "field", + "name": "ObscureMedia", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.ObscureMusic", + "kind": "field", + "name": "ObscureMusic", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.OtherCleanTime", + "kind": "field", + "name": "OtherCleanTime", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.OtherCount", + "kind": "field", + "name": "OtherCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.OtherPrims", + "kind": "field", + "name": "OtherPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.OwnerPrims", + "kind": "field", + "name": "OwnerPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.ParcelPrimBonus", + "kind": "field", + "name": "ParcelPrimBonus", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.PassHours", + "kind": "field", + "name": "PassHours", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.PassPrice", + "kind": "field", + "name": "PassPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.PublicCount", + "kind": "field", + "name": "PublicCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.RegionDenyAgeUnverified", + "kind": "field", + "name": "RegionDenyAgeUnverified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.RegionDenyAnonymous", + "kind": "field", + "name": "RegionDenyAnonymous", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.RegionPushOverride", + "kind": "field", + "name": "RegionPushOverride", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.RentPrice", + "kind": "field", + "name": "RentPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.SeeAVs", + "kind": "field", + "name": "SeeAVs", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.SelfCount", + "kind": "field", + "name": "SelfCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.SimWideMaxPrims", + "kind": "field", + "name": "SimWideMaxPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.SimWideTotalPrims", + "kind": "field", + "name": "SimWideTotalPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.Status", + "kind": "field", + "name": "Status", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.TotalPrims", + "kind": "field", + "name": "TotalPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.UserLocation", + "kind": "field", + "name": "UserLocation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Parcel.UserLookAt", + "kind": "field", + "name": "UserLookAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Parcel.#ctor(System.Int32)", + "kind": "constructor", + "name": "Parcel", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Parcel.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Parcel.Update(LibreMetaverse.GridClient,LibreMetaverse.Simulator,System.Boolean)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wantReply", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Parcel.UpdateOtherCleanTime(LibreMetaverse.Simulator)", + "kind": "method", + "name": "UpdateOtherCleanTime", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelAccessFlags", + "namespace": "LibreMetaverse", + "name": "ParcelAccessFlags", + "signature": "LibreMetaverse.ParcelAccessFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelAccessFlags.Access", + "kind": "enum_value", + "name": "Access", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelAccessFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelAccessFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelAccessFlags.NoAccess", + "kind": "enum_value", + "name": "NoAccess", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelAccessFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelAccessFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelAccessListReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelAccessListReplyEventArgs", + "signature": "LibreMetaverse.ParcelAccessListReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelAccessListReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.UInt32,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelAccessEntry})", + "kind": "constructor", + "name": "ParcelAccessListReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sequenceID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accessEntries", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.AccessList", + "kind": "property", + "name": "AccessList", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.Flags", + "kind": "property", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.LocalID", + "kind": "property", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.SequenceID", + "kind": "property", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelCategory", + "namespace": "LibreMetaverse", + "name": "ParcelCategory", + "signature": "LibreMetaverse.ParcelCategory", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.SByte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Adult", + "kind": "enum_value", + "name": "Adult", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Any", + "kind": "enum_value", + "name": "Any", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "-1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Arts", + "kind": "enum_value", + "name": "Arts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Business", + "kind": "enum_value", + "name": "Business", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Educational", + "kind": "enum_value", + "name": "Educational", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Gaming", + "kind": "enum_value", + "name": "Gaming", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Hangout", + "kind": "enum_value", + "name": "Hangout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Linden", + "kind": "enum_value", + "name": "Linden", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Newcomer", + "kind": "enum_value", + "name": "Newcomer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Other", + "kind": "enum_value", + "name": "Other", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "13" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Park", + "kind": "enum_value", + "name": "Park", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Residential", + "kind": "enum_value", + "name": "Residential", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Shopping", + "kind": "enum_value", + "name": "Shopping", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "11" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelCategory.Stage", + "kind": "enum_value", + "name": "Stage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelCategory", + "value": "12" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelDwellReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelDwellReplyEventArgs", + "signature": "LibreMetaverse.ParcelDwellReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelDwellReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int32,System.Single)", + "kind": "constructor", + "name": "ParcelDwellReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dwell", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelDwellReplyEventArgs.Dwell", + "kind": "property", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelDwellReplyEventArgs.LocalID", + "kind": "property", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelDwellReplyEventArgs.ParcelID", + "kind": "property", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelEnvironmentEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelEnvironmentEventArgs", + "signature": "LibreMetaverse.ParcelEnvironmentEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelEnvironmentEventArgs.#ctor(System.Int32,LibreMetaverse.Messages.Linden.ExtEnvironmentMessage)", + "kind": "constructor", + "name": "ParcelEnvironmentEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "environment", + "type": "LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelEnvironmentEventArgs.Environment", + "kind": "property", + "name": "Environment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelEnvironmentEventArgs.ParcelId", + "kind": "property", + "name": "ParcelId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelFlags", + "namespace": "LibreMetaverse", + "name": "ParcelFlags", + "signature": "LibreMetaverse.ParcelFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowAPrimitiveEntry", + "kind": "enum_value", + "name": "AllowAPrimitiveEntry", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "134217728" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowDamage", + "kind": "enum_value", + "name": "AllowDamage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowDeedToGroup", + "kind": "enum_value", + "name": "AllowDeedToGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "8192" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowFly", + "kind": "enum_value", + "name": "AllowFly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowGroupObjectEntry", + "kind": "enum_value", + "name": "AllowGroupObjectEntry", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "268435456" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowGroupScripts", + "kind": "enum_value", + "name": "AllowGroupScripts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "33554432" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowLandmark", + "kind": "enum_value", + "name": "AllowLandmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowOtherScripts", + "kind": "enum_value", + "name": "AllowOtherScripts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowPublish", + "kind": "enum_value", + "name": "AllowPublish", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "131072" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowTerraform", + "kind": "enum_value", + "name": "AllowTerraform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.AllowVoiceChat", + "kind": "enum_value", + "name": "AllowVoiceChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "536870912" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.ContributeWithDeed", + "kind": "enum_value", + "name": "ContributeWithDeed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "16384" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.CreateGroupObjects", + "kind": "enum_value", + "name": "CreateGroupObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "67108864" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.CreateObjects", + "kind": "enum_value", + "name": "CreateObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.DenyAgeUnverified", + "kind": "enum_value", + "name": "DenyAgeUnverified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "2147483648" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.DenyAnonymous", + "kind": "enum_value", + "name": "DenyAnonymous", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "4194304" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.ForSale", + "kind": "enum_value", + "name": "ForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.ForSaleObjects", + "kind": "enum_value", + "name": "ForSaleObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.LindenHome", + "kind": "enum_value", + "name": "LindenHome", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "8388608" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.MaturePublish", + "kind": "enum_value", + "name": "MaturePublish", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "262144" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.RestrictPushObject", + "kind": "enum_value", + "name": "RestrictPushObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "2097152" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.SellParcelObjects", + "kind": "enum_value", + "name": "SellParcelObjects", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.ShowDirectory", + "kind": "enum_value", + "name": "ShowDirectory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.SoundLocal", + "kind": "enum_value", + "name": "SoundLocal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "32768" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UrlRawHtml", + "kind": "enum_value", + "name": "UrlRawHtml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "1048576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UrlWebPage", + "kind": "enum_value", + "name": "UrlWebPage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "524288" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UseAccessGroup", + "kind": "enum_value", + "name": "UseAccessGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UseAccessList", + "kind": "enum_value", + "name": "UseAccessList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UseBanList", + "kind": "enum_value", + "name": "UseBanList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UseEstateVoiceChan", + "kind": "enum_value", + "name": "UseEstateVoiceChan", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "1073741824" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelFlags.UsePassList", + "kind": "enum_value", + "name": "UsePassList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelFlags", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelInfo", + "namespace": "LibreMetaverse", + "name": "ParcelInfo", + "signature": "LibreMetaverse.ParcelInfo", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelInfo.ActualArea", + "kind": "field", + "name": "ActualArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.AuctionID", + "kind": "field", + "name": "AuctionID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.BillableArea", + "kind": "field", + "name": "BillableArea", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.Dwell", + "kind": "field", + "name": "Dwell", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.GlobalX", + "kind": "field", + "name": "GlobalX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.GlobalY", + "kind": "field", + "name": "GlobalY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.GlobalZ", + "kind": "field", + "name": "GlobalZ", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.Mature", + "kind": "field", + "name": "Mature", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelInfo.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelInfoReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelInfoReplyEventArgs", + "signature": "LibreMetaverse.ParcelInfoReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelInfoReplyEventArgs.#ctor(LibreMetaverse.ParcelInfo)", + "kind": "constructor", + "name": "ParcelInfoReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcel", + "type": "LibreMetaverse.ParcelInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelInfoReplyEventArgs.Parcel", + "kind": "property", + "name": "Parcel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelInfo", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelManager", + "namespace": "LibreMetaverse", + "name": "ParcelManager", + "signature": "LibreMetaverse.ParcelManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.ParcelManager.ForceSelectObjectsReply", + "kind": "event", + "name": "ForceSelectObjectsReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ForceSelectObjectsReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelAccessListReply", + "kind": "event", + "name": "ParcelAccessListReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelAccessListReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelDwellReply", + "kind": "event", + "name": "ParcelDwellReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelDwellReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelInfoReply", + "kind": "event", + "name": "ParcelInfoReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelInfoReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelMediaCommand", + "kind": "event", + "name": "ParcelMediaCommand", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelMediaCommandEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelMediaUpdateReply", + "kind": "event", + "name": "ParcelMediaUpdateReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelMediaUpdateReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelObjectOwnersReply", + "kind": "event", + "name": "ParcelObjectOwnersReply", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelObjectOwnersReplyEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelOverlaysDownloaded", + "kind": "event", + "name": "ParcelOverlaysDownloaded", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelOverlayEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.ParcelProperties", + "kind": "event", + "name": "ParcelProperties", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.ParcelPropertiesEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.ParcelManager.SimParcelsDownloaded", + "kind": "event", + "name": "SimParcelsDownloaded", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SimParcelsDownloadedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "ParcelManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "kind": "method", + "name": "Buy", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forGroup", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "removeContribution", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parcelArea", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parcelPrice", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.DeedToGroup(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.UUID)", + "kind": "method", + "name": "DeedToGroup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.EjectUser(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "EjectUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ban", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.FreezeUser(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "FreezeUser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "freeze", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.GetParcelLocalID(LibreMetaverse.Simulator,LibreMetaverse.Vector3)", + "kind": "method", + "name": "GetParcelLocalID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.GetParcelResourcesAsync(LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "kind": "method", + "name": "GetParcelResourcesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.LandResourcesInfo\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "success" + }, + { + "type": "System.String", + "value": "info" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "getDetails", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ParcelManager.\u003CGetParcelResourcesAsync\u003Ed__100" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.ParcelJoin(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "ParcelJoin", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "west", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "south", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "east", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "north", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.ParcelSubdivide(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "ParcelSubdivide", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "west", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "south", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "east", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "north", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.Reclaim(LibreMetaverse.Simulator,System.Int32)", + "kind": "method", + "name": "Reclaim", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.ReleaseParcel(LibreMetaverse.Simulator,System.Int32)", + "kind": "method", + "name": "ReleaseParcel", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Boolean,System.TimeSpan,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAllSimParcelsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "refresh", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "delay", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ParcelManager.\u003CRequestAllSimParcelsAsync\u003Ed__81" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestAllSimParcelsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestDwell(LibreMetaverse.Simulator,System.Int32)", + "kind": "method", + "name": "RequestDwell", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestObjectOwners(LibreMetaverse.Simulator,System.Int32)", + "kind": "method", + "name": "RequestObjectOwners", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelAccessList(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.AccessList,System.Int32)", + "kind": "method", + "name": "RequestParcelAccessList", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.AccessList", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sequenceID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelInfo(LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestParcelInfo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parcelID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Int32,System.Int32)", + "kind": "method", + "name": "RequestParcelProperties", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sequenceID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "kind": "method", + "name": "RequestParcelProperties", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "north", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "east", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "south", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "west", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sequenceID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snapSelection", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestRemoteParcelIDAsync(LibreMetaverse.Vector3,System.UInt64,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "kind": "method", + "name": "RequestRemoteParcelIDAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "location", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.ParcelManager.\u003CRequestRemoteParcelIDAsync\u003Ed__99" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.RequestSelectObjects(System.Int32,LibreMetaverse.ObjectReturnType,LibreMetaverse.UUID)", + "kind": "method", + "name": "RequestSelectObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "selectType", + "type": "LibreMetaverse.ObjectReturnType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.ReturnObjects(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.ObjectReturnType,System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "method", + "name": "ReturnObjects", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ObjectReturnType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerIDs", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.StartAuction(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.UUID)", + "kind": "method", + "name": "StartAuction", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snapshotID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize)", + "kind": "method", + "name": "Terraform", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "LibreMetaverse.TerraformAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "brushSize", + "type": "LibreMetaverse.TerraformBrushSize", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "kind": "method", + "name": "Terraform", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "west", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "south", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "east", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "north", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "LibreMetaverse.TerraformAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "brushSize", + "type": "LibreMetaverse.TerraformBrushSize", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seconds", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "kind": "method", + "name": "Terraform", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "west", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "south", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "east", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "north", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "LibreMetaverse.TerraformAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "brushSize", + "type": "LibreMetaverse.TerraformBrushSize", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seconds", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "height", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelManager.CurrentParcel", + "kind": "property", + "name": "CurrentParcel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Parcel", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelManager.ParcelAccessEntry", + "namespace": "LibreMetaverse", + "name": "ParcelAccessEntry", + "signature": "LibreMetaverse.ParcelManager.ParcelAccessEntry", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelAccessEntry.AgentID", + "kind": "field", + "name": "AgentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelAccessEntry.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AccessList", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelAccessEntry.Time", + "kind": "field", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelManager.ParcelPrimOwners", + "namespace": "LibreMetaverse", + "name": "ParcelPrimOwners", + "signature": "LibreMetaverse.ParcelManager.ParcelPrimOwners", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.Count", + "kind": "field", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.IsGroupOwned", + "kind": "field", + "name": "IsGroupOwned", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.NewestPrim", + "kind": "field", + "name": "NewestPrim", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.OnlineStatus", + "kind": "field", + "name": "OnlineStatus", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelMedia", + "namespace": "LibreMetaverse", + "name": "ParcelMedia", + "signature": "LibreMetaverse.ParcelMedia", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaAutoScale", + "kind": "field", + "name": "MediaAutoScale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaDesc", + "kind": "field", + "name": "MediaDesc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaHeight", + "kind": "field", + "name": "MediaHeight", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaID", + "kind": "field", + "name": "MediaID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaLoop", + "kind": "field", + "name": "MediaLoop", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaType", + "kind": "field", + "name": "MediaType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMedia.MediaWidth", + "kind": "field", + "name": "MediaWidth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelMediaCommand", + "namespace": "LibreMetaverse", + "name": "ParcelMediaCommand", + "signature": "LibreMetaverse.ParcelMediaCommand", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Agent", + "kind": "enum_value", + "name": "Agent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.AutoAlign", + "kind": "enum_value", + "name": "AutoAlign", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Desc", + "kind": "enum_value", + "name": "Desc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Loop", + "kind": "enum_value", + "name": "Loop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Pause", + "kind": "enum_value", + "name": "Pause", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Play", + "kind": "enum_value", + "name": "Play", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Size", + "kind": "enum_value", + "name": "Size", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Stop", + "kind": "enum_value", + "name": "Stop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Texture", + "kind": "enum_value", + "name": "Texture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Time", + "kind": "enum_value", + "name": "Time", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Type", + "kind": "enum_value", + "name": "Type", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.URL", + "kind": "enum_value", + "name": "URL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelMediaCommand.Unload", + "kind": "enum_value", + "name": "Unload", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelMediaCommand", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelMediaCommandEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelMediaCommandEventArgs", + "signature": "LibreMetaverse.ParcelMediaCommandEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelMediaCommandEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.ParcelFlags,LibreMetaverse.ParcelMediaCommand,System.Single)", + "kind": "constructor", + "name": "ParcelMediaCommandEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sequence", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.ParcelFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "command", + "type": "LibreMetaverse.ParcelMediaCommand", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "time", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.MediaCommand", + "kind": "property", + "name": "MediaCommand", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelMediaCommand", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.ParcelFlags", + "kind": "property", + "name": "ParcelFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelFlags", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.Sequence", + "kind": "property", + "name": "Sequence", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.Time", + "kind": "property", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelMediaUpdateReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelMediaUpdateReplyEventArgs", + "signature": "LibreMetaverse.ParcelMediaUpdateReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelMediaUpdateReplyEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.ParcelMedia)", + "kind": "constructor", + "name": "ParcelMediaUpdateReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "media", + "type": "LibreMetaverse.ParcelMedia", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaUpdateReplyEventArgs.Media", + "kind": "property", + "name": "Media", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelMedia", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelMediaUpdateReplyEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelObjectOwnersReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelObjectOwnersReplyEventArgs", + "signature": "LibreMetaverse.ParcelObjectOwnersReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelObjectOwnersReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelPrimOwners})", + "kind": "constructor", + "name": "ParcelObjectOwnersReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primOwners", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelPrimOwners\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelObjectOwnersReplyEventArgs.PrimOwners", + "kind": "property", + "name": "PrimOwners", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelPrimOwners\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelObjectOwnersReplyEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelOverlayEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelOverlayEventArgs", + "signature": "LibreMetaverse.ParcelOverlayEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelOverlayEventArgs.#ctor(LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "ParcelOverlayEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelOverlayEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelOverlayType", + "namespace": "LibreMetaverse", + "name": "ParcelOverlayType", + "signature": "LibreMetaverse.ParcelOverlayType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.Auction", + "kind": "enum_value", + "name": "Auction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.BorderSouth", + "kind": "enum_value", + "name": "BorderSouth", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "128" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.BorderWest", + "kind": "enum_value", + "name": "BorderWest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "64" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.ForSale", + "kind": "enum_value", + "name": "ForSale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.OwnedByGroup", + "kind": "enum_value", + "name": "OwnedByGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.OwnedByOther", + "kind": "enum_value", + "name": "OwnedByOther", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.OwnedBySelf", + "kind": "enum_value", + "name": "OwnedBySelf", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.Private", + "kind": "enum_value", + "name": "Private", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "32" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelOverlayType.Public", + "kind": "enum_value", + "name": "Public", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelOverlayType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelOverlayType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelPropertiesEventArgs", + "namespace": "LibreMetaverse", + "name": "ParcelPropertiesEventArgs", + "signature": "LibreMetaverse.ParcelPropertiesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParcelPropertiesEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Parcel,LibreMetaverse.ParcelResult,System.Int32,System.Int32,System.Boolean)", + "kind": "constructor", + "name": "ParcelPropertiesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parcel", + "type": "LibreMetaverse.Parcel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.ParcelResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "selectedPrims", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sequenceID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snapSelection", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.Parcel", + "kind": "property", + "name": "Parcel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Parcel", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.Result", + "kind": "property", + "name": "Result", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelResult", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.SelectedPrims", + "kind": "property", + "name": "SelectedPrims", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.SequenceID", + "kind": "property", + "name": "SequenceID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.SnapSelection", + "kind": "property", + "name": "SnapSelection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelPropertiesStatus", + "namespace": "LibreMetaverse", + "name": "ParcelPropertiesStatus", + "signature": "LibreMetaverse.ParcelPropertiesStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelPropertiesStatus.CollisionBanned", + "kind": "enum_value", + "name": "CollisionBanned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelPropertiesStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelPropertiesStatus", + "value": "-30000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelPropertiesStatus.CollisionNotInGroup", + "kind": "enum_value", + "name": "CollisionNotInGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelPropertiesStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelPropertiesStatus", + "value": "-20000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelPropertiesStatus.CollisionNotOnAccessList", + "kind": "enum_value", + "name": "CollisionNotOnAccessList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelPropertiesStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelPropertiesStatus", + "value": "-40000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelPropertiesStatus.HoveredOverParcel", + "kind": "enum_value", + "name": "HoveredOverParcel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelPropertiesStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelPropertiesStatus", + "value": "-50000" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelPropertiesStatus.ParcelSelected", + "kind": "enum_value", + "name": "ParcelSelected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelPropertiesStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelPropertiesStatus", + "value": "-10000" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelResult", + "namespace": "LibreMetaverse", + "name": "ParcelResult", + "signature": "LibreMetaverse.ParcelResult", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelResult.Multiple", + "kind": "enum_value", + "name": "Multiple", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelResult", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelResult", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelResult.NoData", + "kind": "enum_value", + "name": "NoData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelResult", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelResult", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelResult.Single", + "kind": "enum_value", + "name": "Single", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelResult", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelResult", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelSettings", + "namespace": "LibreMetaverse", + "name": "ParcelSettings", + "signature": "LibreMetaverse.ParcelSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelSettings.AlwaysRequestAcl", + "kind": "field", + "name": "AlwaysRequestAcl", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelSettings.AlwaysRequestDwell", + "kind": "field", + "name": "AlwaysRequestDwell", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelSettings.PoolParcelData", + "kind": "field", + "name": "PoolParcelData", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelSettings.TrackParcels", + "kind": "field", + "name": "TrackParcels", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParcelSettings.#ctor", + "kind": "constructor", + "name": "ParcelSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParcelStatus", + "namespace": "LibreMetaverse", + "name": "ParcelStatus", + "signature": "LibreMetaverse.ParcelStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.SByte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ParcelStatus.Abandoned", + "kind": "enum_value", + "name": "Abandoned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelStatus", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelStatus.LeasePending", + "kind": "enum_value", + "name": "LeasePending", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelStatus", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelStatus.Leased", + "kind": "enum_value", + "name": "Leased", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelStatus", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ParcelStatus.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ParcelStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ParcelStatus", + "value": "-1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParticleSimulator", + "namespace": "LibreMetaverse", + "name": "ParticleSimulator", + "signature": "LibreMetaverse.ParticleSimulator", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParticleSimulator.#ctor(LibreMetaverse.Primitive.ParticleSystem,System.Int32)", + "kind": "constructor", + "name": "ParticleSimulator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sys", + "type": "LibreMetaverse.Primitive.ParticleSystem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "seed", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParticleSimulator.GetParticles", + "kind": "method", + "name": "GetParticles", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.LiveParticle\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ParticleSimulator.Tick(System.Single)", + "kind": "method", + "name": "Tick", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dt", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleSimulator.IsActive", + "kind": "property", + "name": "IsActive", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleSimulator.SourcePosition", + "kind": "property", + "name": "SourcePosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleSimulator.SourceRotation", + "kind": "property", + "name": "SourceRotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleSimulator.SystemAge", + "kind": "property", + "name": "SystemAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleSimulator.TargetPosition", + "kind": "property", + "name": "TargetPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleSimulator.Wind", + "kind": "property", + "name": "Wind", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ParticleUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "ParticleUpdateEventArgs", + "signature": "LibreMetaverse.ParticleUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ParticleUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ParticleSystem,LibreMetaverse.Primitive)", + "kind": "constructor", + "name": "ParticleUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "particlesystem", + "type": "LibreMetaverse.Primitive.ParticleSystem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "source", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleUpdateEventArgs.ParticleSystem", + "kind": "property", + "name": "ParticleSystem", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleUpdateEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ParticleUpdateEventArgs.Source", + "kind": "property", + "name": "Source", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PayPriceReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "PayPriceReplyEventArgs", + "signature": "LibreMetaverse.PayPriceReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PayPriceReplyEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Int32[])", + "kind": "constructor", + "name": "PayPriceReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "defaultPrice", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "buttonPrices", + "type": "System.Int32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PayPriceReplyEventArgs.ButtonPrices", + "kind": "property", + "name": "ButtonPrices", + "static": false, + "visibility": "public", + "type": "System.Int32[]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PayPriceReplyEventArgs.DefaultPrice", + "kind": "property", + "name": "DefaultPrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PayPriceReplyEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PayPriceReplyEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PayPriceType", + "namespace": "LibreMetaverse", + "name": "PayPriceType", + "signature": "LibreMetaverse.PayPriceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PayPriceType.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PayPriceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PayPriceType", + "value": "-2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PayPriceType.Hide", + "kind": "enum_value", + "name": "Hide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PayPriceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PayPriceType", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PermissionMask", + "namespace": "LibreMetaverse", + "name": "PermissionMask", + "signature": "LibreMetaverse.PermissionMask", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.PermissionMask.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "581632" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.Copy", + "kind": "enum_value", + "name": "Copy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "32768" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.Damage", + "kind": "enum_value", + "name": "Damage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "1048576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.Export", + "kind": "enum_value", + "name": "Export", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.Modify", + "kind": "enum_value", + "name": "Modify", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "16384" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.Move", + "kind": "enum_value", + "name": "Move", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "524288" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionMask.Transfer", + "kind": "enum_value", + "name": "Transfer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionMask", + "value": "8192" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PermissionWho", + "namespace": "LibreMetaverse", + "name": "PermissionWho", + "signature": "LibreMetaverse.PermissionWho", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.PermissionWho.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionWho", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionWho", + "value": "31" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionWho.Base", + "kind": "enum_value", + "name": "Base", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionWho", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionWho", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionWho.Everyone", + "kind": "enum_value", + "name": "Everyone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionWho", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionWho", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionWho.Group", + "kind": "enum_value", + "name": "Group", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionWho", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionWho", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionWho.NextOwner", + "kind": "enum_value", + "name": "NextOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionWho", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionWho", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PermissionWho.Owner", + "kind": "enum_value", + "name": "Owner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PermissionWho", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PermissionWho", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Permissions", + "namespace": "LibreMetaverse", + "name": "Permissions", + "signature": "LibreMetaverse.Permissions", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "MessagePack.MessagePackObjectAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Permissions.BaseMask", + "kind": "field", + "name": "BaseMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "BaseMask" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Permissions.EveryoneMask", + "kind": "field", + "name": "EveryoneMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "EveryoneMask" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Permissions.FullPermissions", + "kind": "field", + "name": "FullPermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Permissions.GroupMask", + "kind": "field", + "name": "GroupMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "GroupMask" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Permissions.NextOwnerMask", + "kind": "field", + "name": "NextOwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "NextOwnerMask" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Permissions.NoPermissions", + "kind": "field", + "name": "NoPermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Permissions.OwnerMask", + "kind": "field", + "name": "OwnerMask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PermissionMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "MessagePack.KeyAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "OwnerMask" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "kind": "constructor", + "name": "Permissions", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "baseMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "everyoneMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nextOwnerMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerMask", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.Equals(LibreMetaverse.Permissions)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "llsd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.GetNextPermissions", + "kind": "method", + "name": "GetNextPermissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.HasPermissions(LibreMetaverse.PermissionMask,LibreMetaverse.PermissionMask)", + "kind": "method", + "name": "HasPermissions", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "perms", + "type": "LibreMetaverse.PermissionMask", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "checkPerms", + "type": "LibreMetaverse.PermissionMask", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.op_Equality(LibreMetaverse.Permissions,LibreMetaverse.Permissions)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Permissions.op_Inequality(LibreMetaverse.Permissions,LibreMetaverse.Permissions)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Permissions", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PhysicsPropertiesEventArgs", + "namespace": "LibreMetaverse", + "name": "PhysicsPropertiesEventArgs", + "signature": "LibreMetaverse.PhysicsPropertiesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.PhysicsPropertiesEventArgs.PhysicsProperties", + "kind": "field", + "name": "PhysicsProperties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.PhysicsProperties", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PhysicsPropertiesEventArgs.Simulator", + "kind": "field", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PhysicsPropertiesEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive.PhysicsProperties)", + "kind": "constructor", + "name": "PhysicsPropertiesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "props", + "type": "LibreMetaverse.Primitive.PhysicsProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PickInfoReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "PickInfoReplyEventArgs", + "signature": "LibreMetaverse.PickInfoReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.PickInfoReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.ProfilePick)", + "kind": "constructor", + "name": "PickInfoReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pickid", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pick", + "type": "LibreMetaverse.ProfilePick", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PickInfoReplyEventArgs.Pick", + "kind": "property", + "name": "Pick", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ProfilePick", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PickInfoReplyEventArgs.PickID", + "kind": "property", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PlacesReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "PlacesReplyEventArgs", + "signature": "LibreMetaverse.PlacesReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PlacesReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.PlacesSearchData})", + "kind": "constructor", + "name": "PlacesReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "queryID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matchedPlaces", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.PlacesSearchData\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PlacesReplyEventArgs.MatchedPlaces", + "kind": "property", + "name": "MatchedPlaces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.PlacesSearchData\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PlacesReplyEventArgs.QueryID", + "kind": "property", + "name": "QueryID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PointAtType", + "namespace": "LibreMetaverse", + "name": "PointAtType", + "signature": "LibreMetaverse.PointAtType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PointAtType.Clear", + "kind": "enum_value", + "name": "Clear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PointAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PointAtType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PointAtType.Grab", + "kind": "enum_value", + "name": "Grab", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PointAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PointAtType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PointAtType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PointAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PointAtType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PointAtType.Select", + "kind": "enum_value", + "name": "Select", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PointAtType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PointAtType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PositionHelper", + "namespace": "LibreMetaverse", + "name": "PositionHelper", + "signature": "LibreMetaverse.PositionHelper", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "kind": "method", + "name": "FormatCoordinates", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Int32\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "y", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Int32\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "z", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Int32\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "kind": "method", + "name": "FormatRegionCoordinates", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Int32\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "y", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Int32\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "z", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Int32\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.GetAvatarPosition(LibreMetaverse.Simulator,LibreMetaverse.Avatar)", + "kind": "method", + "name": "GetAvatarPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avatar", + "type": "LibreMetaverse.Avatar", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.GetPrimPosition(LibreMetaverse.Simulator,LibreMetaverse.Primitive)", + "kind": "method", + "name": "GetPrimPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.GlobalPosition(LibreMetaverse.Primitive,LibreMetaverse.Simulator)", + "kind": "method", + "name": "GlobalPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "currentSim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.GlobalPosition(LibreMetaverse.Simulator,LibreMetaverse.Vector3)", + "kind": "method", + "name": "GlobalPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localPos", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.RegionHandleFromGlobal(System.UInt32,System.UInt32)", + "kind": "method", + "name": "RegionHandleFromGlobal", + "static": true, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalX", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalY", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.RegionHandleFromGlobalPosition(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "RegionHandleFromGlobalPosition", + "static": true, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.ToGlobalPosition(System.UInt64,LibreMetaverse.Vector3)", + "kind": "method", + "name": "ToGlobalPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localPos", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PositionHelper.ToLocalPosition(System.UInt64,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "ToLocalPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "globalPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PreloadSoundEventArgs", + "namespace": "LibreMetaverse", + "name": "PreloadSoundEventArgs", + "signature": "LibreMetaverse.PreloadSoundEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PreloadSoundEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "PreloadSoundEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PreloadSoundEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PreloadSoundEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PreloadSoundEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PreloadSoundEventArgs.SoundID", + "kind": "property", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimEventArgs", + "namespace": "LibreMetaverse", + "name": "PrimEventArgs", + "signature": "LibreMetaverse.PrimEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.PrimEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,System.UInt16,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "PrimEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeDilation", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isNew", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isAttachment", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimEventArgs.IsAttachment", + "kind": "property", + "name": "IsAttachment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimEventArgs.IsNew", + "kind": "property", + "name": "IsNew", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimEventArgs.Prim", + "kind": "property", + "name": "Prim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimEventArgs.TimeDilation", + "kind": "property", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive", + "namespace": "LibreMetaverse", + "name": "Primitive", + "signature": "LibreMetaverse.Primitive", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Primitive\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.Acceleration", + "kind": "field", + "name": "Acceleration", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ActiveClients", + "kind": "field", + "name": "ActiveClients", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.AngularVelocity", + "kind": "field", + "name": "AngularVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ChildCount", + "kind": "field", + "name": "ChildCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ClickAction", + "kind": "field", + "name": "ClickAction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.CollisionPlane", + "kind": "field", + "name": "CollisionPlane", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ExtendedMeshFlags", + "kind": "field", + "name": "ExtendedMeshFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.FaceMedia", + "kind": "field", + "name": "FaceMedia", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MediaEntry[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Flexible", + "kind": "field", + "name": "Flexible", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.FlexibleData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.IsAttachment", + "kind": "field", + "name": "IsAttachment", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Joint", + "kind": "field", + "name": "Joint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.JointType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.JointAxisOrAnchor", + "kind": "field", + "name": "JointAxisOrAnchor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.JointPivot", + "kind": "field", + "name": "JointPivot", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Light", + "kind": "field", + "name": "Light", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.LightData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LightMap", + "kind": "field", + "name": "LightMap", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.LightImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.MediaURL", + "kind": "field", + "name": "MediaURL", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.MediaVersion", + "kind": "field", + "name": "MediaVersion", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.NameValues", + "kind": "field", + "name": "NameValues", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NameValue[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParentID", + "kind": "field", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSys", + "kind": "field", + "name": "ParticleSys", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProps", + "kind": "field", + "name": "PhysicsProps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.PhysicsProperties", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PrimData", + "kind": "field", + "name": "PrimData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ConstructionData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Properties", + "kind": "field", + "name": "Properties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.RegionHandle", + "kind": "field", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ScratchPad", + "kind": "field", + "name": "ScratchPad", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Sculpt", + "kind": "field", + "name": "Sculpt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.SculptData", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.SignaledAnimations", + "kind": "field", + "name": "SignaledAnimations", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Sound", + "kind": "field", + "name": "Sound", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.SoundFlags", + "kind": "field", + "name": "SoundFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.SoundGain", + "kind": "field", + "name": "SoundGain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.SoundRadius", + "kind": "field", + "name": "SoundRadius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Tag", + "kind": "field", + "name": "Tag", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Text", + "kind": "field", + "name": "Text", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextColor", + "kind": "field", + "name": "TextColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnim", + "kind": "field", + "name": "TextureAnim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Textures", + "kind": "field", + "name": "Textures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntry", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TreeSpecies", + "kind": "field", + "name": "TreeSpecies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.Velocity", + "kind": "field", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.#ctor", + "kind": "constructor", + "name": "Primitive", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.#ctor(LibreMetaverse.Primitive)", + "kind": "constructor", + "name": "Primitive", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.Equals(LibreMetaverse.Primitive)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.GetChildren(LibreMetaverse.GridClient)", + "kind": "method", + "name": "GetChildren", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Primitive\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.GetExtraParamsBytes", + "kind": "method", + "name": "GetExtraParamsBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.GetGrassDefinition", + "kind": "method", + "name": "GetGrassDefinition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GrassDefinition\u0026", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.GetTreeDefinition", + "kind": "method", + "name": "GetTreeDefinition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TreeDefinition\u0026", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackBeginCut(System.Single)", + "kind": "method", + "name": "PackBeginCut", + "static": true, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "beginCut", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackEndCut(System.Single)", + "kind": "method", + "name": "PackEndCut", + "static": true, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endCut", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackPathRevolutions(System.Single)", + "kind": "method", + "name": "PackPathRevolutions", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathRevolutions", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackPathScale(System.Single)", + "kind": "method", + "name": "PackPathScale", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathScale", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackPathShear(System.Single)", + "kind": "method", + "name": "PackPathShear", + "static": true, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathShear", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackPathTaper(System.Single)", + "kind": "method", + "name": "PackPathTaper", + "static": true, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathTaper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackPathTwist(System.Single)", + "kind": "method", + "name": "PackPathTwist", + "static": true, + "visibility": "public", + "type": "System.SByte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathTwist", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PackProfileHollow(System.Single)", + "kind": "method", + "name": "PackProfileHollow", + "static": true, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "profileHollow", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SetExtraParamsFromBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "SetExtraParamsFromBytes", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackBeginCut(System.UInt16)", + "kind": "method", + "name": "UnpackBeginCut", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "beginCut", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackEndCut(System.UInt16)", + "kind": "method", + "name": "UnpackEndCut", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endCut", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackPathRevolutions(System.Byte)", + "kind": "method", + "name": "UnpackPathRevolutions", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathRevolutions", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackPathScale(System.Byte)", + "kind": "method", + "name": "UnpackPathScale", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathScale", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackPathShear(System.SByte)", + "kind": "method", + "name": "UnpackPathShear", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathShear", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackPathTaper(System.SByte)", + "kind": "method", + "name": "UnpackPathTaper", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathTaper", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackPathTwist(System.SByte)", + "kind": "method", + "name": "UnpackPathTwist", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathTwist", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.UnpackProfileHollow(System.UInt16)", + "kind": "method", + "name": "UnpackProfileHollow", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "profileHollow", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.op_Equality(LibreMetaverse.Primitive,LibreMetaverse.Primitive)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.op_Inequality(LibreMetaverse.Primitive,LibreMetaverse.Primitive)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.GrassSpecies", + "kind": "property", + "name": "GrassSpecies", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Grass", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.IsAnimatedObject", + "kind": "property", + "name": "IsAnimatedObject", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ConstructionData", + "namespace": "LibreMetaverse", + "name": "ConstructionData", + "signature": "LibreMetaverse.Primitive.ConstructionData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.Material", + "kind": "field", + "name": "Material", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PCode", + "kind": "field", + "name": "PCode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathBegin", + "kind": "field", + "name": "PathBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathCurve", + "kind": "field", + "name": "PathCurve", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PathCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathEnd", + "kind": "field", + "name": "PathEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathRadiusOffset", + "kind": "field", + "name": "PathRadiusOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathRevolutions", + "kind": "field", + "name": "PathRevolutions", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathScaleX", + "kind": "field", + "name": "PathScaleX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathScaleY", + "kind": "field", + "name": "PathScaleY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathShearX", + "kind": "field", + "name": "PathShearX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathShearY", + "kind": "field", + "name": "PathShearY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathSkew", + "kind": "field", + "name": "PathSkew", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTaperX", + "kind": "field", + "name": "PathTaperX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTaperY", + "kind": "field", + "name": "PathTaperY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTwist", + "kind": "field", + "name": "PathTwist", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTwistBegin", + "kind": "field", + "name": "PathTwistBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.ProfileBegin", + "kind": "field", + "name": "ProfileBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.ProfileEnd", + "kind": "field", + "name": "ProfileEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.ProfileHollow", + "kind": "field", + "name": "ProfileHollow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ConstructionData.profileCurve", + "kind": "field", + "name": "profileCurve", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ConstructionData.#ctor", + "kind": "constructor", + "name": "ConstructionData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ConstructionData.#ctor(LibreMetaverse.Primitive.ConstructionData)", + "kind": "constructor", + "name": "ConstructionData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Primitive.ConstructionData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ConstructionData.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.ConstructionData.AttachmentPoint", + "kind": "property", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.ConstructionData.PathBeginScale", + "kind": "property", + "name": "PathBeginScale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.ConstructionData.PathEndScale", + "kind": "property", + "name": "PathEndScale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.ConstructionData.ProfileCurve", + "kind": "property", + "name": "ProfileCurve", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.ConstructionData.ProfileHole", + "kind": "property", + "name": "ProfileHole", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.HoleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.FlexibleData", + "namespace": "LibreMetaverse", + "name": "FlexibleData", + "signature": "LibreMetaverse.Primitive.FlexibleData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Drag", + "kind": "field", + "name": "Drag", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Force", + "kind": "field", + "name": "Force", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Gravity", + "kind": "field", + "name": "Gravity", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Softness", + "kind": "field", + "name": "Softness", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Tension", + "kind": "field", + "name": "Tension", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Wind", + "kind": "field", + "name": "Wind", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FlexibleData.#ctor", + "kind": "constructor", + "name": "FlexibleData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FlexibleData.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "FlexibleData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FlexibleData.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.FlexibleData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FlexibleData.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FlexibleData.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.FlexibleData.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.LightData", + "namespace": "LibreMetaverse", + "name": "LightData", + "signature": "LibreMetaverse.Primitive.LightData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.LightData.Color", + "kind": "field", + "name": "Color", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LightData.Cutoff", + "kind": "field", + "name": "Cutoff", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LightData.Falloff", + "kind": "field", + "name": "Falloff", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LightData.Intensity", + "kind": "field", + "name": "Intensity", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LightData.Radius", + "kind": "field", + "name": "Radius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.#ctor", + "kind": "constructor", + "name": "LightData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "LightData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.LightData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightData.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.LightImage", + "namespace": "LibreMetaverse", + "name": "LightImage", + "signature": "LibreMetaverse.Primitive.LightImage", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.LightImage.LightTexture", + "kind": "field", + "name": "LightTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.LightImage.Params", + "kind": "field", + "name": "Params", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.#ctor", + "kind": "constructor", + "name": "LightImage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "LightImage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.LightImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.LightImage.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ObjectProperties", + "namespace": "LibreMetaverse", + "name": "ObjectProperties", + "signature": "LibreMetaverse.Primitive.ObjectProperties", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.AggregatePermTextures", + "kind": "field", + "name": "AggregatePermTextures", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.AggregatePermTexturesOwner", + "kind": "field", + "name": "AggregatePermTexturesOwner", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.AggregatePerms", + "kind": "field", + "name": "AggregatePerms", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.Category", + "kind": "field", + "name": "Category", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.CreationDate", + "kind": "field", + "name": "CreationDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.Description", + "kind": "field", + "name": "Description", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.FolderID", + "kind": "field", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.FromTaskID", + "kind": "field", + "name": "FromTaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.GroupID", + "kind": "field", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.InventorySerial", + "kind": "field", + "name": "InventorySerial", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.ItemID", + "kind": "field", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.LastOwnerID", + "kind": "field", + "name": "LastOwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.ObjectID", + "kind": "field", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.OwnerID", + "kind": "field", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.OwnershipCost", + "kind": "field", + "name": "OwnershipCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.Permissions", + "kind": "field", + "name": "Permissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Permissions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.SalePrice", + "kind": "field", + "name": "SalePrice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.SaleType", + "kind": "field", + "name": "SaleType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.SitName", + "kind": "field", + "name": "SitName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.TextureIDs", + "kind": "field", + "name": "TextureIDs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.TouchName", + "kind": "field", + "name": "TouchName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ObjectProperties.#ctor", + "kind": "constructor", + "name": "ObjectProperties", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ObjectProperties.GetTextureIDBytes", + "kind": "method", + "name": "GetTextureIDBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ObjectProperties.SetFamilyProperties(LibreMetaverse.Primitive.ObjectProperties)", + "kind": "method", + "name": "SetFamilyProperties", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "props", + "type": "LibreMetaverse.Primitive.ObjectProperties", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ParticleSystem", + "namespace": "LibreMetaverse", + "name": "ParticleSystem", + "signature": "LibreMetaverse.Primitive.ParticleSystem", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Primitive.ParticleSystem\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.AngularVelocity", + "kind": "field", + "name": "AngularVelocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFuncDest", + "kind": "field", + "name": "BlendFuncDest", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFuncSource", + "kind": "field", + "name": "BlendFuncSource", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstPartCount", + "kind": "field", + "name": "BurstPartCount", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstRadius", + "kind": "field", + "name": "BurstRadius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstRate", + "kind": "field", + "name": "BurstRate", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstSpeedMax", + "kind": "field", + "name": "BurstSpeedMax", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstSpeedMin", + "kind": "field", + "name": "BurstSpeedMin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.InnerAngle", + "kind": "field", + "name": "InnerAngle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.LegacyDataBlockSize", + "kind": "constant", + "name": "LegacyDataBlockSize", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "86" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.MaxAge", + "kind": "field", + "name": "MaxAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.MaxDataBlockSize", + "kind": "constant", + "name": "MaxDataBlockSize", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "98" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.OuterAngle", + "kind": "field", + "name": "OuterAngle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartAcceleration", + "kind": "field", + "name": "PartAcceleration", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartDataFlags", + "kind": "field", + "name": "PartDataFlags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartDataSize", + "kind": "constant", + "name": "PartDataSize", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "18" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndColor", + "kind": "field", + "name": "PartEndColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndGlow", + "kind": "field", + "name": "PartEndGlow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndScaleX", + "kind": "field", + "name": "PartEndScaleX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndScaleY", + "kind": "field", + "name": "PartEndScaleY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartFlags", + "kind": "field", + "name": "PartFlags", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartMaxAge", + "kind": "field", + "name": "PartMaxAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartColor", + "kind": "field", + "name": "PartStartColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartGlow", + "kind": "field", + "name": "PartStartGlow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartScaleX", + "kind": "field", + "name": "PartStartScaleX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartScaleY", + "kind": "field", + "name": "PartStartScaleY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.Pattern", + "kind": "field", + "name": "Pattern", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.StartAge", + "kind": "field", + "name": "StartAge", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SysDataSize", + "kind": "constant", + "name": "SysDataSize", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Byte", + "value": "68" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.Target", + "kind": "field", + "name": "Target", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.Texture", + "kind": "field", + "name": "Texture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "ParticleSystem", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.Equals(LibreMetaverse.Primitive.ParticleSystem)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Primitive.ParticleSystem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.HasBlendFunc", + "kind": "method", + "name": "HasBlendFunc", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.HasGlow", + "kind": "method", + "name": "HasGlow", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.IsLegacyCompatible", + "kind": "method", + "name": "IsLegacyCompatible", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "namespace": "LibreMetaverse", + "name": "BlendFunc", + "signature": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.DestAlpha", + "kind": "enum_value", + "name": "DestAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.DestColor", + "kind": "enum_value", + "name": "DestColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.One", + "kind": "enum_value", + "name": "One", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.OneMinusDestAlpha", + "kind": "enum_value", + "name": "OneMinusDestAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.OneMinusDestColor", + "kind": "enum_value", + "name": "OneMinusDestColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.OneMinusSourceAlpha", + "kind": "enum_value", + "name": "OneMinusSourceAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.OneMinusSourceColor", + "kind": "enum_value", + "name": "OneMinusSourceColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.SourceAlpha", + "kind": "enum_value", + "name": "SourceAlpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.SourceColor", + "kind": "enum_value", + "name": "SourceColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFunc.Zero", + "kind": "enum_value", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "namespace": "LibreMetaverse", + "name": "ParticleDataFlags", + "signature": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.Beam", + "kind": "enum_value", + "name": "Beam", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.Bounce", + "kind": "enum_value", + "name": "Bounce", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.DataBlend", + "kind": "enum_value", + "name": "DataBlend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "131072" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.DataGlow", + "kind": "enum_value", + "name": "DataGlow", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.Emissive", + "kind": "enum_value", + "name": "Emissive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.FollowSrc", + "kind": "enum_value", + "name": "FollowSrc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.FollowVelocity", + "kind": "enum_value", + "name": "FollowVelocity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.InterpColor", + "kind": "enum_value", + "name": "InterpColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.InterpScale", + "kind": "enum_value", + "name": "InterpScale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.Ribbon", + "kind": "enum_value", + "name": "Ribbon", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.TargetLinear", + "kind": "enum_value", + "name": "TargetLinear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.TargetPos", + "kind": "enum_value", + "name": "TargetPos", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags.Wind", + "kind": "enum_value", + "name": "Wind", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "namespace": "LibreMetaverse", + "name": "ParticleFlags", + "signature": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags.ObjectRelative", + "kind": "enum_value", + "name": "ObjectRelative", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags.UseNewAngle", + "kind": "enum_value", + "name": "UseNewAngle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "namespace": "LibreMetaverse", + "name": "SourcePattern", + "signature": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SourcePattern.Angle", + "kind": "enum_value", + "name": "Angle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SourcePattern.AngleCone", + "kind": "enum_value", + "name": "AngleCone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SourcePattern.AngleConeEmpty", + "kind": "enum_value", + "name": "AngleConeEmpty", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SourcePattern.Drop", + "kind": "enum_value", + "name": "Drop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SourcePattern.Explode", + "kind": "enum_value", + "name": "Explode", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SourcePattern.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.PhysicsProperties", + "namespace": "LibreMetaverse", + "name": "PhysicsProperties", + "signature": "LibreMetaverse.Primitive.PhysicsProperties", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.Density", + "kind": "field", + "name": "Density", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.Friction", + "kind": "field", + "name": "Friction", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.GravityMultiplier", + "kind": "field", + "name": "GravityMultiplier", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.LocalID", + "kind": "field", + "name": "LocalID", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.PhysicsShapeType", + "kind": "field", + "name": "PhysicsShapeType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PhysicsShapeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.Restitution", + "kind": "field", + "name": "Restitution", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PhysicsProperties.#ctor", + "kind": "constructor", + "name": "PhysicsProperties", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PhysicsProperties.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.PhysicsProperties", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.PhysicsProperties.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.SculptData", + "namespace": "LibreMetaverse", + "name": "SculptData", + "signature": "LibreMetaverse.Primitive.SculptData", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.SculptData.SculptTexture", + "kind": "field", + "name": "SculptTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SculptData.#ctor", + "kind": "constructor", + "name": "SculptData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SculptData.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "SculptData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SculptData.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.SculptData", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SculptData.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SculptData.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.SculptData.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.SculptData.Invert", + "kind": "property", + "name": "Invert", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.SculptData.Mirror", + "kind": "property", + "name": "Mirror", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.SculptData.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.TextureAnimMode", + "namespace": "LibreMetaverse", + "name": "TextureAnimMode", + "signature": "LibreMetaverse.Primitive.TextureAnimMode", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.ANIM_OFF", + "kind": "enum_value", + "name": "ANIM_OFF", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.ANIM_ON", + "kind": "enum_value", + "name": "ANIM_ON", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.LOOP", + "kind": "enum_value", + "name": "LOOP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.PING_PONG", + "kind": "enum_value", + "name": "PING_PONG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.REVERSE", + "kind": "enum_value", + "name": "REVERSE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.ROTATE", + "kind": "enum_value", + "name": "ROTATE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.SCALE", + "kind": "enum_value", + "name": "SCALE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimMode.SMOOTH", + "kind": "enum_value", + "name": "SMOOTH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.TextureAnimation", + "namespace": "LibreMetaverse", + "name": "TextureAnimation", + "signature": "LibreMetaverse.Primitive.TextureAnimation", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Primitive.TextureAnimation\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Face", + "kind": "field", + "name": "Face", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimMode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Length", + "kind": "field", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Rate", + "kind": "field", + "name": "Rate", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.SizeX", + "kind": "field", + "name": "SizeX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.SizeY", + "kind": "field", + "name": "SizeY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Start", + "kind": "field", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "TextureAnimation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.Equals(LibreMetaverse.Primitive.TextureAnimation)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Primitive.TextureAnimation", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureAnimation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.TextureEntry", + "namespace": "LibreMetaverse", + "name": "TextureEntry", + "signature": "LibreMetaverse.Primitive.TextureEntry", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Primitive.TextureEntry.DefaultTexture", + "kind": "field", + "name": "DefaultTexture", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureEntry.FaceTextures", + "kind": "field", + "name": "FaceTextures", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureEntry.MAX_FACES", + "kind": "constant", + "name": "MAX_FACES", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "45" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Primitive.TextureEntry.WHITE_TEXTURE", + "kind": "field", + "name": "WHITE_TEXTURE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(LibreMetaverse.Primitive.TextureEntry)", + "kind": "constructor", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "source", + "type": "LibreMetaverse.Primitive.TextureEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(LibreMetaverse.Primitive.TextureEntryFace)", + "kind": "constructor", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "defaultFace", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "defaultTextureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(System.Byte[],System.Int32,System.Int32)", + "kind": "constructor", + "name": "TextureEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "length", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.CreateFace(System.UInt32)", + "kind": "method", + "name": "CreateFace", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.FromOSD(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntry", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetFace(System.UInt32)", + "kind": "method", + "name": "GetFace", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetOSD", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntry.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Primitive.TextureEntryFace", + "namespace": "LibreMetaverse", + "name": "TextureEntryFace", + "signature": "LibreMetaverse.Primitive.TextureEntryFace", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.ICloneable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.#ctor(LibreMetaverse.Primitive.TextureEntryFace)", + "kind": "constructor", + "name": "TextureEntryFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "defaultTexture", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.Clone", + "kind": "method", + "name": "Clone", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.FromOSD(LibreMetaverse.StructuredData.OSD,LibreMetaverse.Primitive.TextureEntryFace,System.Int32@)", + "kind": "method", + "name": "FromOSD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "defaultFace", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "faceNumber", + "type": "System.Int32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.GetOSD(System.Int32)", + "kind": "method", + "name": "GetOSD", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "faceNumber", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Bump", + "kind": "property", + "name": "Bump", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Bumpiness", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Fullbright", + "kind": "property", + "name": "Fullbright", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Glow", + "kind": "property", + "name": "Glow", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.MaterialID", + "kind": "property", + "name": "MaterialID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.MediaFlags", + "kind": "property", + "name": "MediaFlags", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.OffsetU", + "kind": "property", + "name": "OffsetU", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.OffsetV", + "kind": "property", + "name": "OffsetV", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.RGBA", + "kind": "property", + "name": "RGBA", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.RenderMaterialID", + "kind": "property", + "name": "RenderMaterialID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.RepeatU", + "kind": "property", + "name": "RepeatU", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.RepeatV", + "kind": "property", + "name": "RepeatV", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Rotation", + "kind": "property", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Shiny", + "kind": "property", + "name": "Shiny", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Shininess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.TexMapType", + "kind": "property", + "name": "TexMapType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MappingType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.TextureID", + "kind": "property", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Valid", + "kind": "property", + "name": "Valid", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ProductInfoEventArgs", + "namespace": "LibreMetaverse", + "name": "ProductInfoEventArgs", + "signature": "LibreMetaverse.ProductInfoEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ProductInfoEventArgs.#ctor(LibreMetaverse.Messages.Linden.ProductInfoRequestMessage)", + "kind": "constructor", + "name": "ProductInfoEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "productInfo", + "type": "LibreMetaverse.Messages.Linden.ProductInfoRequestMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ProductInfoEventArgs.ProductInfo", + "kind": "property", + "name": "ProductInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ProductInfoRequestMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ProfileFlags", + "namespace": "LibreMetaverse", + "name": "ProfileFlags", + "signature": "LibreMetaverse.ProfileFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ProfileFlags.AgeVerified", + "kind": "enum_value", + "name": "AgeVerified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileFlags.AllowPublish", + "kind": "enum_value", + "name": "AllowPublish", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileFlags.Identified", + "kind": "enum_value", + "name": "Identified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileFlags.MaturePublish", + "kind": "enum_value", + "name": "MaturePublish", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileFlags.Online", + "kind": "enum_value", + "name": "Online", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileFlags.Transacted", + "kind": "enum_value", + "name": "Transacted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ProfilePick", + "namespace": "LibreMetaverse", + "name": "ProfilePick", + "signature": "LibreMetaverse.ProfilePick", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ProfilePick.CreatorID", + "kind": "field", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.Desc", + "kind": "field", + "name": "Desc", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.OriginalName", + "kind": "field", + "name": "OriginalName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.ParcelID", + "kind": "field", + "name": "ParcelID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.PickID", + "kind": "field", + "name": "PickID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.PosGlobal", + "kind": "field", + "name": "PosGlobal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.SimName", + "kind": "field", + "name": "SimName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.SnapshotID", + "kind": "field", + "name": "SnapshotID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.SortOrder", + "kind": "field", + "name": "SortOrder", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.TopPick", + "kind": "field", + "name": "TopPick", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfilePick.User", + "kind": "field", + "name": "User", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ProtocolManager", + "namespace": "LibreMetaverse", + "name": "ProtocolManager", + "signature": "LibreMetaverse.ProtocolManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ProtocolManager.HighMaps", + "kind": "field", + "name": "HighMaps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MapPacket[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProtocolManager.KeywordPositions", + "kind": "field", + "name": "KeywordPositions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProtocolManager.LowMaps", + "kind": "field", + "name": "LowMaps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MapPacket[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProtocolManager.MediumMaps", + "kind": "field", + "name": "MediumMaps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MapPacket[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProtocolManager.TypeSizes", + "kind": "field", + "name": "TypeSizes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.FieldType, System.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ProtocolManager.#ctor(System.String,LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "ProtocolManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mapFile", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ProtocolManager.Command(System.Byte[])", + "kind": "method", + "name": "Command", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MapPacket", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ProtocolManager.Command(System.String)", + "kind": "method", + "name": "Command", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MapPacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "command", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ProtocolManager.Command(System.UInt16,LibreMetaverse.PacketFrequency)", + "kind": "method", + "name": "Command", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.MapPacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "command", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "frequency", + "type": "LibreMetaverse.PacketFrequency", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ProtocolManager.DecodeMapFile(System.String,System.String)", + "kind": "method", + "name": "DecodeMapFile", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mapFile", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "outputFile", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ProtocolManager.PrintMap", + "kind": "method", + "name": "PrintMap", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RebakeAvatarTexturesEventArgs", + "namespace": "LibreMetaverse", + "name": "RebakeAvatarTexturesEventArgs", + "signature": "LibreMetaverse.RebakeAvatarTexturesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.RebakeAvatarTexturesEventArgs.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "RebakeAvatarTexturesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RebakeAvatarTexturesEventArgs.TextureID", + "kind": "property", + "name": "TextureID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionCrossedEventArgs", + "namespace": "LibreMetaverse", + "name": "RegionCrossedEventArgs", + "signature": "LibreMetaverse.RegionCrossedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RegionCrossedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "RegionCrossedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "oldSim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newSim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionCrossedEventArgs.NewSimulator", + "kind": "property", + "name": "NewSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionCrossedEventArgs.OldSimulator", + "kind": "property", + "name": "OldSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionCrossingPredictionEventArgs", + "namespace": "LibreMetaverse", + "name": "RegionCrossingPredictionEventArgs", + "signature": "LibreMetaverse.RegionCrossingPredictionEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RegionCrossingPredictionEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.BorderCrossingDirection,System.Single)", + "kind": "constructor", + "name": "RegionCrossingPredictionEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "currentSim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "direction", + "type": "LibreMetaverse.BorderCrossingDirection", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeUntilCrossing", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionCrossingPredictionEventArgs.CurrentSimulator", + "kind": "property", + "name": "CurrentSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionCrossingPredictionEventArgs.Direction", + "kind": "property", + "name": "Direction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.BorderCrossingDirection", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionCrossingPredictionEventArgs.TimeUntilCrossing", + "kind": "property", + "name": "TimeUntilCrossing", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionEnvironmentEventArgs", + "namespace": "LibreMetaverse", + "name": "RegionEnvironmentEventArgs", + "signature": "LibreMetaverse.RegionEnvironmentEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RegionEnvironmentEventArgs.#ctor(LibreMetaverse.Messages.Linden.ExtEnvironmentMessage)", + "kind": "constructor", + "name": "RegionEnvironmentEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "environment", + "type": "LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionEnvironmentEventArgs.Environment", + "kind": "property", + "name": "Environment", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionExperiencesEventArgs", + "namespace": "LibreMetaverse", + "name": "RegionExperiencesEventArgs", + "signature": "LibreMetaverse.RegionExperiencesEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RegionExperiencesEventArgs.#ctor(LibreMetaverse.Messages.Linden.RegionExperiencesMessage)", + "kind": "constructor", + "name": "RegionExperiencesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionExperiences", + "type": "LibreMetaverse.Messages.Linden.RegionExperiencesMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionExperiencesEventArgs.RegionExperiences", + "kind": "property", + "name": "RegionExperiences", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.RegionExperiencesMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionFlags", + "namespace": "LibreMetaverse", + "name": "RegionFlags", + "signature": "LibreMetaverse.RegionFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt64", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RegionFlags.AbuseEmailToEstateOwner", + "kind": "enum_value", + "name": "AbuseEmailToEstateOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "134217728" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowAccessOverride", + "kind": "enum_value", + "name": "AllowAccessOverride", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "32" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowDamage", + "kind": "enum_value", + "name": "AllowDamage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "1" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowDirectTeleport", + "kind": "enum_value", + "name": "AllowDirectTeleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "1048576" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowLandmark", + "kind": "enum_value", + "name": "AllowLandmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "2" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowParcelChanges", + "kind": "enum_value", + "name": "AllowParcelChanges", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "67108864" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowSetHome", + "kind": "enum_value", + "name": "AllowSetHome", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "4" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.AllowVoice", + "kind": "enum_value", + "name": "AllowVoice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "268435456" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.BlockDwell", + "kind": "enum_value", + "name": "BlockDwell", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "262144" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.BlockLandResell", + "kind": "enum_value", + "name": "BlockLandResell", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "128" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.BlockParcelSearch", + "kind": "enum_value", + "name": "BlockParcelSearch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "536870912" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.BlockTerraform", + "kind": "enum_value", + "name": "BlockTerraform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "64" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.DenyAgeUnverified", + "kind": "enum_value", + "name": "DenyAgeUnverified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "1073741824" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.DenyAnonymous", + "kind": "enum_value", + "name": "DenyAnonymous", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "8388608" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.DenyBots", + "kind": "enum_value", + "name": "DenyBots", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "2147483648" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.DenyIdentified", + "kind": "enum_value", + "name": "DenyIdentified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "16777216" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.DenyTransacted", + "kind": "enum_value", + "name": "DenyTransacted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "33554432" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.EstateSkipScripts", + "kind": "enum_value", + "name": "EstateSkipScripts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "2097152" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.ExternallyVisible", + "kind": "enum_value", + "name": "ExternallyVisible", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "32768" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.MainlandVisible", + "kind": "enum_value", + "name": "MainlandVisible", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "65536" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.NoFly", + "kind": "enum_value", + "name": "NoFly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "524288" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "0" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.NullLayer", + "kind": "enum_value", + "name": "NullLayer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "512" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.PublicAllowed", + "kind": "enum_value", + "name": "PublicAllowed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "131072" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.ResetHomeOnTeleport", + "kind": "enum_value", + "name": "ResetHomeOnTeleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "8" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.RestrictPushObject", + "kind": "enum_value", + "name": "RestrictPushObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "4194304" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.Sandbox", + "kind": "enum_value", + "name": "Sandbox", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "256" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.SkipAgentAction", + "kind": "enum_value", + "name": "SkipAgentAction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "1024" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.SkipCollisions", + "kind": "enum_value", + "name": "SkipCollisions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "4096" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.SkipPhysics", + "kind": "enum_value", + "name": "SkipPhysics", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "16384" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.SkipScripts", + "kind": "enum_value", + "name": "SkipScripts", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "8192" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.SkipUpdateInterestList", + "kind": "enum_value", + "name": "SkipUpdateInterestList", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "2048" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionFlags.SunFixed", + "kind": "enum_value", + "name": "SunFixed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionFlags", + "value": "16" + }, + "numeric_width": 64, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionHandleReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "RegionHandleReplyEventArgs", + "signature": "LibreMetaverse.RegionHandleReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.RegionHandleReplyEventArgs.#ctor(LibreMetaverse.UUID,System.UInt64)", + "kind": "constructor", + "name": "RegionHandleReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionHandleReplyEventArgs.RegionHandle", + "kind": "property", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionHandleReplyEventArgs.RegionID", + "kind": "property", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionProtocols", + "namespace": "LibreMetaverse", + "name": "RegionProtocols", + "signature": "LibreMetaverse.RegionProtocols", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt64", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RegionProtocols.AgentAppearanceService", + "kind": "enum_value", + "name": "AgentAppearanceService", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionProtocols", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionProtocols", + "value": "1" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionProtocols.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionProtocols", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionProtocols", + "value": "0" + }, + "numeric_width": 64, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionProtocols.SelfAppearanceSupport", + "kind": "enum_value", + "name": "SelfAppearanceSupport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionProtocols", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionProtocols", + "value": "4" + }, + "numeric_width": 64, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionRestartDays", + "namespace": "LibreMetaverse", + "name": "RegionRestartDays", + "signature": "LibreMetaverse.RegionRestartDays", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "127" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Friday", + "kind": "enum_value", + "name": "Friday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Monday", + "kind": "enum_value", + "name": "Monday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Saturday", + "kind": "enum_value", + "name": "Saturday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Sunday", + "kind": "enum_value", + "name": "Sunday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Thursday", + "kind": "enum_value", + "name": "Thursday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Tuesday", + "kind": "enum_value", + "name": "Tuesday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RegionRestartDays.Wednesday", + "kind": "enum_value", + "name": "Wednesday", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RegionRestartDays", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RegionRestartSchedule", + "namespace": "LibreMetaverse", + "name": "RegionRestartSchedule", + "signature": "LibreMetaverse.RegionRestartSchedule", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.RegionRestartSchedule.#ctor", + "kind": "constructor", + "name": "RegionRestartSchedule", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionRestartSchedule.Days", + "kind": "property", + "name": "Days", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RegionRestartDays", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionRestartSchedule.IsDaily", + "kind": "property", + "name": "IsDaily", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RegionRestartSchedule.Time", + "kind": "property", + "name": "Time", + "static": false, + "visibility": "public", + "type": "System.TimeSpan", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.AttachmentRiggedSkin", + "namespace": "LibreMetaverse.Rendering", + "name": "AttachmentRiggedSkin", + "signature": "LibreMetaverse.Rendering.AttachmentRiggedSkin", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.InvBindMatrices", + "kind": "field", + "name": "InvBindMatrices", + "static": false, + "visibility": "public", + "type": "System.Numerics.Matrix4x4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.JointNames", + "kind": "field", + "name": "JointNames", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.JointPositionOverrides", + "kind": "field", + "name": "JointPositionOverrides", + "static": false, + "visibility": "public", + "type": "System.ValueTuple\u003CSystem.String, System.Numerics.Vector3\u003E[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "JointName" + }, + { + "type": "System.String", + "value": "Position" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.Joints", + "kind": "field", + "name": "Joints", + "static": false, + "visibility": "public", + "type": "System.Int32[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.LockScaleIfJointPosition", + "kind": "field", + "name": "LockScaleIfJointPosition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.MeshId", + "kind": "field", + "name": "MeshId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.Weights", + "kind": "field", + "name": "Weights", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AttachmentRiggedSkin.#ctor", + "kind": "constructor", + "name": "AttachmentRiggedSkin", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.AvatarAttachmentPoint", + "namespace": "LibreMetaverse.Rendering", + "name": "AvatarAttachmentPoint", + "signature": "LibreMetaverse.Rendering.AvatarAttachmentPoint", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Group", + "kind": "property", + "name": "Group", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Id", + "kind": "property", + "name": "Id", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Joint", + "kind": "property", + "name": "Joint", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Location", + "kind": "property", + "name": "Location", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Rotation", + "kind": "property", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.VisibleInFirstPerson", + "kind": "property", + "name": "VisibleInFirstPerson", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.AvatarBoneMath", + "namespace": "LibreMetaverse.Rendering", + "name": "AvatarBoneMath", + "signature": "LibreMetaverse.Rendering.AvatarBoneMath", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.BuildBoneWorldMatrices(LibreMetaverse.Rendering.LindenSkeleton,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "kind": "method", + "name": "BuildBoneWorldMatrices", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "skeleton", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "boneTransforms", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "kind": "method", + "name": "ComputeAnimatedBoneWorldMatrices", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarDef", + "type": "LibreMetaverse.Rendering.LindenAvatarDefinition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "boneTransforms", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "rotDeltas", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "kind": "method", + "name": "ComputeAnimatedBoneWorldMatrices", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarDef", + "type": "LibreMetaverse.Rendering.LindenAvatarDefinition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "boneTransforms", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "rotDeltas", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "result", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "kind": "method", + "name": "ComputeAttachmentBoneWorldMatrices", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarDef", + "type": "LibreMetaverse.Rendering.LindenAvatarDefinition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "boneTransforms", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "rotDeltas", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "kind": "method", + "name": "ComputeAttachmentBoneWorldMatrices", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatarDef", + "type": "LibreMetaverse.Rendering.LindenAvatarDefinition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "boneTransforms", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "rotDeltas", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "result", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeGroundAdjustment(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "kind": "method", + "name": "ComputeGroundAdjustment", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "boneTransforms", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.StripScale(System.Numerics.Matrix4x4)", + "kind": "method", + "name": "StripScale", + "static": true, + "visibility": "public", + "type": "System.Numerics.Matrix4x4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "m", + "type": "System.Numerics.Matrix4x4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.AvatarMeshDefinition", + "namespace": "LibreMetaverse.Rendering", + "name": "AvatarMeshDefinition", + "signature": "LibreMetaverse.Rendering.AvatarMeshDefinition", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.FileName", + "kind": "property", + "name": "FileName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.LodLevel", + "kind": "property", + "name": "LodLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.MinPixelWidth", + "kind": "property", + "name": "MinPixelWidth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.AvatarPhysicsSimulator", + "namespace": "LibreMetaverse.Rendering", + "name": "AvatarPhysicsSimulator", + "signature": "LibreMetaverse.Rendering.AvatarPhysicsSimulator", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.#ctor", + "kind": "constructor", + "name": "AvatarPhysicsSimulator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetBonePositionProvider(System.Func{System.String,System.Numerics.Vector3})", + "kind": "method", + "name": "SetBonePositionProvider", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "getBoneWorldPos", + "type": "System.Func\u003CSystem.String, System.Numerics.Vector3\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetWearableParams(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "kind": "method", + "name": "SetWearableParams", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "visualParams", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.Tick(System.Single)", + "kind": "method", + "name": "Tick", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "time", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.BoneTransform", + "namespace": "LibreMetaverse.Rendering", + "name": "BoneTransform", + "signature": "LibreMetaverse.Rendering.BoneTransform", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.BoneTransform.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.BoneTransform.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.CollisionVolume", + "namespace": "LibreMetaverse.Rendering", + "name": "CollisionVolume", + "signature": "LibreMetaverse.Rendering.CollisionVolume", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Rendering.JointBase", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.1" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.CollisionVolume.#ctor", + "kind": "constructor", + "name": "CollisionVolume", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.DetailLevel", + "namespace": "LibreMetaverse.Rendering", + "name": "DetailLevel", + "signature": "LibreMetaverse.Rendering.DetailLevel", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.DetailLevel.High", + "kind": "enum_value", + "name": "High", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.DetailLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.DetailLevel", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.DetailLevel.Highest", + "kind": "enum_value", + "name": "Highest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.DetailLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.DetailLevel", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.DetailLevel.Low", + "kind": "enum_value", + "name": "Low", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.DetailLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.DetailLevel", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.DetailLevel.Medium", + "kind": "enum_value", + "name": "Medium", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.DetailLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.DetailLevel", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader", + "namespace": "LibreMetaverse.Rendering", + "name": "EndianAwareBinaryReader", + "signature": "LibreMetaverse.Rendering.EndianAwareBinaryReader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.IO.BinaryReader", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.#ctor(System.IO.Stream)", + "kind": "constructor", + "name": "EndianAwareBinaryReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.#ctor(System.IO.Stream,LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat)", + "kind": "constructor", + "name": "EndianAwareBinaryReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "format", + "type": "LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadDouble", + "kind": "method", + "name": "ReadDouble", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadInt16", + "kind": "method", + "name": "ReadInt16", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadInt32", + "kind": "method", + "name": "ReadInt32", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadInt64", + "kind": "method", + "name": "ReadInt64", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadSingle", + "kind": "method", + "name": "ReadSingle", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadString", + "kind": "method", + "name": "ReadString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadString(System.Int32)", + "kind": "method", + "name": "ReadString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "size", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadUInt32", + "kind": "method", + "name": "ReadUInt32", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "namespace": "LibreMetaverse.Rendering", + "name": "SourceFormat", + "signature": "LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat.BigEndian", + "kind": "enum_value", + "name": "BigEndian", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat.LittleEndian", + "kind": "enum_value", + "name": "LittleEndian", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.Face", + "namespace": "LibreMetaverse.Rendering", + "name": "Face", + "signature": "LibreMetaverse.Rendering.Face", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.Face.BeginS", + "kind": "field", + "name": "BeginS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.BeginT", + "kind": "field", + "name": "BeginT", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.Center", + "kind": "field", + "name": "Center", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.Edge", + "kind": "field", + "name": "Edge", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.Indices", + "kind": "field", + "name": "Indices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.UInt16\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.Mask", + "kind": "field", + "name": "Mask", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.MaxExtent", + "kind": "field", + "name": "MaxExtent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.MinExtent", + "kind": "field", + "name": "MinExtent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.NormalizedScale", + "kind": "field", + "name": "NormalizedScale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.NumS", + "kind": "field", + "name": "NumS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.NumT", + "kind": "field", + "name": "NumT", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.TexCoords1", + "kind": "field", + "name": "TexCoords1", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Vector2\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.TextureFace", + "kind": "field", + "name": "TextureFace", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.UserData", + "kind": "field", + "name": "UserData", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.Vertices", + "kind": "field", + "name": "Vertices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Face.Weights", + "kind": "field", + "name": "Weights", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.VertexWeight\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Face.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.FaceMask", + "namespace": "LibreMetaverse.Rendering", + "name": "FaceMask", + "signature": "LibreMetaverse.Rendering.FaceMask", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Bottom", + "kind": "enum_value", + "name": "Bottom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Cap", + "kind": "enum_value", + "name": "Cap", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.End", + "kind": "enum_value", + "name": "End", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Flat", + "kind": "enum_value", + "name": "Flat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Hollow", + "kind": "enum_value", + "name": "Hollow", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Inner", + "kind": "enum_value", + "name": "Inner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Open", + "kind": "enum_value", + "name": "Open", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Outer", + "kind": "enum_value", + "name": "Outer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Side", + "kind": "enum_value", + "name": "Side", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Single", + "kind": "enum_value", + "name": "Single", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceMask.Top", + "kind": "enum_value", + "name": "Top", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceMask", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceMask", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.FaceType", + "namespace": "LibreMetaverse.Rendering", + "name": "FaceType", + "signature": "LibreMetaverse.Rendering.FaceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt16", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.InnerSide", + "kind": "enum_value", + "name": "InnerSide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "4" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.OuterSide0", + "kind": "enum_value", + "name": "OuterSide0", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "32" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.OuterSide1", + "kind": "enum_value", + "name": "OuterSide1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "64" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.OuterSide2", + "kind": "enum_value", + "name": "OuterSide2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "128" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.OuterSide3", + "kind": "enum_value", + "name": "OuterSide3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "256" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.PathBegin", + "kind": "enum_value", + "name": "PathBegin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "1" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.PathEnd", + "kind": "enum_value", + "name": "PathEnd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "2" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.ProfileBegin", + "kind": "enum_value", + "name": "ProfileBegin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "8" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FaceType.ProfileEnd", + "kind": "enum_value", + "name": "ProfileEnd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.FaceType", + "value": "16" + }, + "numeric_width": 16, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.FacetedMesh", + "namespace": "LibreMetaverse.Rendering", + "name": "FacetedMesh", + "signature": "LibreMetaverse.Rendering.FacetedMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Rendering.Mesh", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.FacetedMesh.Faces", + "kind": "field", + "name": "Faces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Face\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.FacetedMesh.SkinData", + "kind": "field", + "name": "SkinData", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.MeshSkinData", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.FacetedMesh.#ctor", + "kind": "constructor", + "name": "FacetedMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.FacetedMesh.TryDecodeFromAsset(LibreMetaverse.Primitive,LibreMetaverse.Assets.AssetMesh,LibreMetaverse.Rendering.DetailLevel,LibreMetaverse.Rendering.FacetedMesh@)", + "kind": "method", + "name": "TryDecodeFromAsset", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "meshAsset", + "type": "LibreMetaverse.Assets.AssetMesh", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "LOD", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mesh", + "type": "LibreMetaverse.Rendering.FacetedMesh\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.IRendering", + "namespace": "LibreMetaverse.Rendering", + "name": "IRendering", + "signature": "LibreMetaverse.Rendering.IRendering", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.IRendering.GenerateFacetedMesh(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.IRendering.GenerateFacetedSculptMesh(LibreMetaverse.Primitive,LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedSculptMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptTexture", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.IRendering.GenerateSimpleMesh(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.IRendering.GenerateSimpleSculptMesh(LibreMetaverse.Primitive,LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleSculptMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptTexture", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.IRendering.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "kind": "method", + "name": "TransformTexCoords", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vertices", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "center", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "teFace", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primScale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.Joint", + "namespace": "LibreMetaverse.Rendering", + "name": "Joint", + "signature": "LibreMetaverse.Rendering.Joint", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Rendering.JointBase", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.1" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.Joint.#ctor", + "kind": "constructor", + "name": "Joint", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Joint.GetAliasesList", + "kind": "method", + "name": "GetAliasesList", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.Joint.aliases", + "kind": "property", + "name": "aliases", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.Joint.bone", + "kind": "property", + "name": "bone", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.Joint[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "bone" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.Joint.collision_volume", + "kind": "property", + "name": "collision_volume", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.CollisionVolume[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlElementAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "collision_volume" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.Joint.connected", + "kind": "property", + "name": "connected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.Joint.pivot", + "kind": "property", + "name": "pivot", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.JointBase", + "namespace": "LibreMetaverse.Rendering", + "name": "JointBase", + "signature": "LibreMetaverse.Rendering.JointBase", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.1" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Rendering.CollisionVolume" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlIncludeAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Rendering.Joint" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.JointBase.#ctor", + "kind": "constructor", + "name": "JointBase", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.SupportCategory", + "kind": "property", + "name": "SupportCategory", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.JointSupportCategory", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.end", + "kind": "property", + "name": "end", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.group", + "kind": "property", + "name": "group", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.name", + "kind": "property", + "name": "name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.pos", + "kind": "property", + "name": "pos", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.reposition", + "kind": "property", + "name": "reposition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.rot", + "kind": "property", + "name": "rot", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.scale", + "kind": "property", + "name": "scale", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.JointBase.support", + "kind": "property", + "name": "support", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "token" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.JointSupportCategory", + "namespace": "LibreMetaverse.Rendering", + "name": "JointSupportCategory", + "signature": "LibreMetaverse.Rendering.JointSupportCategory", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.JointSupportCategory.Base", + "kind": "enum_value", + "name": "Base", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.JointSupportCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.JointSupportCategory", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.JointSupportCategory.Extended", + "kind": "enum_value", + "name": "Extended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.JointSupportCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Rendering.JointSupportCategory", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenAvatarDefinition", + "namespace": "LibreMetaverse.Rendering", + "name": "LindenAvatarDefinition", + "signature": "LibreMetaverse.Rendering.LindenAvatarDefinition", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.ComputeBoneTransforms(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "kind": "method", + "name": "ComputeBoneTransforms", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "paramValues", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.GetAttachmentPoint(System.Int32)", + "kind": "method", + "name": "GetAttachmentPoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.AvatarAttachmentPoint", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.GetAttachmentPoint(System.String)", + "kind": "method", + "name": "GetAttachmentPoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.AvatarAttachmentPoint", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.Load(System.String,System.String)", + "kind": "method", + "name": "Load", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenAvatarDefinition", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ladFileName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "skeletonFileName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Loads avatar skeleton via XmlSerializer at runtime. Not AOT-safe." + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenAvatarDefinition.AttachmentPoints", + "kind": "property", + "name": "AttachmentPoints", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Rendering.AvatarAttachmentPoint\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenAvatarDefinition.MeshDefinitions", + "kind": "property", + "name": "MeshDefinitions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Rendering.AvatarMeshDefinition\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenAvatarDefinition.Skeleton", + "kind": "property", + "name": "Skeleton", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh", + "namespace": "LibreMetaverse.Rendering", + "name": "LindenMesh", + "signature": "LibreMetaverse.Rendering.LindenMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MinPixelWidth", + "kind": "field", + "name": "MinPixelWidth", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Morphs", + "kind": "field", + "name": "Morphs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.Morph[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeights", + "kind": "field", + "name": "SkinWeights", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.LindenMesh.SkinWeightElement\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.#ctor(System.String)", + "kind": "constructor", + "name": "LindenMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.#ctor(System.String,LibreMetaverse.Rendering.LindenSkeleton)", + "kind": "constructor", + "name": "LindenMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "skeleton", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadLodMesh(System.Int32,System.String)", + "kind": "method", + "name": "LoadLodMesh", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadMesh(System.String)", + "kind": "method", + "name": "LoadMesh", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadReferenceMesh(System.Int32,System.String)", + "kind": "method", + "name": "LoadReferenceMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.ReferenceMesh", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lodLevel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.TrimAt0(System.String)", + "kind": "method", + "name": "TrimAt0", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Faces", + "kind": "property", + "name": "Faces", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.Face[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.HasDetailTexCoords", + "kind": "property", + "name": "HasDetailTexCoords", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.HasWeights", + "kind": "property", + "name": "HasWeights", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Header", + "kind": "property", + "name": "Header", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.LodMeshes", + "kind": "property", + "name": "LodMeshes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.SortedList\u003CSystem.Int32, System.Object\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumFaces", + "kind": "property", + "name": "NumFaces", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumRemaps", + "kind": "property", + "name": "NumRemaps", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumSkinJoints", + "kind": "property", + "name": "NumSkinJoints", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumVertices", + "kind": "property", + "name": "NumVertices", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.RotationAngles", + "kind": "property", + "name": "RotationAngles", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Scale", + "kind": "property", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Skeleton", + "kind": "property", + "name": "Skeleton", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.SkinJoints", + "kind": "property", + "name": "SkinJoints", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.VertexRemaps", + "kind": "property", + "name": "VertexRemaps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.VertexRemap[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Vertices", + "kind": "property", + "name": "Vertices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.Vertex[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "protected", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "protected", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.Face", + "namespace": "LibreMetaverse.Rendering", + "name": "Face", + "signature": "LibreMetaverse.Rendering.LindenMesh.Face", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Face.Indices", + "kind": "field", + "name": "Indices", + "static": false, + "visibility": "public", + "type": "System.Int16[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.Morph", + "namespace": "LibreMetaverse.Rendering", + "name": "Morph", + "signature": "LibreMetaverse.Rendering.LindenMesh.Morph", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Morph.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Morph.NumVertices", + "kind": "field", + "name": "NumVertices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Morph.Vertices", + "kind": "field", + "name": "Vertices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.MorphVertex[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.Morph.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.MorphVertex", + "namespace": "LibreMetaverse.Rendering", + "name": "MorphVertex", + "signature": "LibreMetaverse.Rendering.LindenMesh.MorphVertex", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MorphVertex.BiNormal", + "kind": "field", + "name": "BiNormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MorphVertex.Coord", + "kind": "field", + "name": "Coord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MorphVertex.Normal", + "kind": "field", + "name": "Normal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MorphVertex.TexCoord", + "kind": "field", + "name": "TexCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MorphVertex.VertexIndex", + "kind": "field", + "name": "VertexIndex", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.MorphVertex.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh", + "namespace": "LibreMetaverse.Rendering", + "name": "ReferenceMesh", + "signature": "LibreMetaverse.Rendering.LindenMesh.ReferenceMesh", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.Faces", + "kind": "field", + "name": "Faces", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenMesh.Face[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.HasDetailTexCoords", + "kind": "field", + "name": "HasDetailTexCoords", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.HasWeights", + "kind": "field", + "name": "HasWeights", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.Header", + "kind": "field", + "name": "Header", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.MinPixelWidth", + "kind": "field", + "name": "MinPixelWidth", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.NumFaces", + "kind": "field", + "name": "NumFaces", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.RotationAngles", + "kind": "field", + "name": "RotationAngles", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.RotationOrder", + "kind": "field", + "name": "RotationOrder", + "static": false, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.#ctor", + "kind": "constructor", + "name": "ReferenceMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.LoadMesh(System.String)", + "kind": "method", + "name": "LoadMesh", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement", + "namespace": "LibreMetaverse.Rendering", + "name": "SkinWeightElement", + "signature": "LibreMetaverse.Rendering.LindenMesh.SkinWeightElement", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Bone1", + "kind": "field", + "name": "Bone1", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Bone2", + "kind": "field", + "name": "Bone2", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Weight1", + "kind": "field", + "name": "Weight1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Weight2", + "kind": "field", + "name": "Weight2", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.Vertex", + "namespace": "LibreMetaverse.Rendering", + "name": "Vertex", + "signature": "LibreMetaverse.Rendering.LindenMesh.Vertex", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.BiNormal", + "kind": "field", + "name": "BiNormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.Coord", + "kind": "field", + "name": "Coord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.DetailTexCoord", + "kind": "field", + "name": "DetailTexCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.Normal", + "kind": "field", + "name": "Normal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.TexCoord", + "kind": "field", + "name": "TexCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.Weight", + "kind": "field", + "name": "Weight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.Vertex.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenMesh.VertexRemap", + "namespace": "LibreMetaverse.Rendering", + "name": "VertexRemap", + "signature": "LibreMetaverse.Rendering.LindenMesh.VertexRemap", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.VertexRemap.RemapDestination", + "kind": "field", + "name": "RemapDestination", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.LindenMesh.VertexRemap.RemapSource", + "kind": "field", + "name": "RemapSource", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenMesh.VertexRemap.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.LindenSkeleton", + "namespace": "LibreMetaverse.Rendering", + "name": "LindenSkeleton", + "signature": "LibreMetaverse.Rendering.LindenSkeleton", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.CodeDom.Compiler.GeneratedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "xsd" + }, + { + "type": "System.String", + "value": "4.0.30319.1" + } + ], + "named_arguments": [] + }, + { + "type": "System.ComponentModel.DesignerCategoryAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "code" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "linden_skeleton" + } + ], + "named_arguments": [ + { + "name": "IsNullable", + "value": { + "type": "System.Boolean", + "value": "False" + } + }, + { + "name": "Namespace", + "value": { + "type": "System.String", + "value": "" + } + } + ] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.#ctor", + "kind": "constructor", + "name": "LindenSkeleton", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildExpandedJointList(System.Collections.Generic.IEnumerable{System.String})", + "kind": "method", + "name": "BuildExpandedJointList", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "jointsFilter", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildJointDictionary", + "kind": "method", + "name": "BuildJointDictionary", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.Joint\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.GetAllJoints", + "kind": "method", + "name": "GetAllJoints", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Rendering.Joint\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.GetBone(System.String)", + "kind": "method", + "name": "GetBone", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.Joint", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "nameOrAlias", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.GetDefault", + "kind": "method", + "name": "GetDefault", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.Load", + "kind": "method", + "name": "Load", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.Load(System.String)", + "kind": "method", + "name": "Load", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.LindenSkeleton", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Uses XmlSerializer with runtime-reflected LindenSkeleton types. Not AOT-safe." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.bone", + "kind": "property", + "name": "bone", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.Joint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.num_bones", + "kind": "property", + "name": "num_bones", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "positiveInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.num_collision_volumes", + "kind": "property", + "name": "num_collision_volumes", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "DataType", + "value": { + "type": "System.String", + "value": "positiveInteger" + } + } + ] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.version", + "kind": "property", + "name": "version", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.versionSpecified", + "kind": "property", + "name": "versionSpecified", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Xml.Serialization.XmlIgnoreAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.Mesh", + "namespace": "LibreMetaverse.Rendering", + "name": "Mesh", + "signature": "LibreMetaverse.Rendering.Mesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.Mesh.Path", + "kind": "field", + "name": "Path", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.Path", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Mesh.Prim", + "kind": "field", + "name": "Prim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Mesh.Profile", + "kind": "field", + "name": "Profile", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.Profile", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Mesh.#ctor", + "kind": "constructor", + "name": "Mesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Mesh.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.MeshSkinData", + "namespace": "LibreMetaverse.Rendering", + "name": "MeshSkinData", + "signature": "LibreMetaverse.Rendering.MeshSkinData", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.AltInverseBindMatrices", + "kind": "field", + "name": "AltInverseBindMatrices", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.BindShapeMatrix", + "kind": "field", + "name": "BindShapeMatrix", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.InverseBindMatrices", + "kind": "field", + "name": "InverseBindMatrices", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.JointNames", + "kind": "field", + "name": "JointNames", + "static": false, + "visibility": "public", + "type": "System.String[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.LockScaleIfJointPosition", + "kind": "field", + "name": "LockScaleIfJointPosition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.PelvisOffset", + "kind": "field", + "name": "PelvisOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshSkinData.#ctor", + "kind": "constructor", + "name": "MeshSkinData", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.Path", + "namespace": "LibreMetaverse.Rendering", + "name": "Path", + "signature": "LibreMetaverse.Rendering.Path", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.Path.Open", + "kind": "field", + "name": "Open", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Path.Points", + "kind": "field", + "name": "Points", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.PathPoint\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.PathPoint", + "namespace": "LibreMetaverse.Rendering", + "name": "PathPoint", + "signature": "LibreMetaverse.Rendering.PathPoint", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.PathPoint.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.PathPoint.Rotation", + "kind": "field", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.PathPoint.Scale", + "kind": "field", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.PathPoint.TexT", + "kind": "field", + "name": "TexT", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.PhysicsVolumeMorphs", + "namespace": "LibreMetaverse.Rendering", + "name": "PhysicsVolumeMorphs", + "signature": "LibreMetaverse.Rendering.PhysicsVolumeMorphs", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "kind": "method", + "name": "ComputeBoneOffsets", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Vector3\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "drivenWeights", + "type": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "vpWeights", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "namespace": "LibreMetaverse.Rendering", + "name": "VolumeMorph", + "signature": "LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.#ctor(System.String,System.Numerics.Vector3)", + "kind": "constructor", + "name": "VolumeMorph", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "BoneName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "PosDelta", + "type": "System.Numerics.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Deconstruct(System.String@,System.Numerics.Vector3@)", + "kind": "method", + "name": "Deconstruct", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "BoneName", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "PosDelta", + "type": "System.Numerics.Vector3\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Equals(LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.op_Equality(LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph,LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.op_Inequality(LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph,LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.BoneName", + "kind": "property", + "name": "BoneName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.PosDelta", + "kind": "property", + "name": "PosDelta", + "static": false, + "visibility": "public", + "type": "System.Numerics.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.Profile", + "namespace": "LibreMetaverse.Rendering", + "name": "Profile", + "signature": "LibreMetaverse.Rendering.Profile", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.Concave", + "kind": "field", + "name": "Concave", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.Faces", + "kind": "field", + "name": "Faces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.ProfileFace\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.MaxX", + "kind": "field", + "name": "MaxX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.MinX", + "kind": "field", + "name": "MinX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.Open", + "kind": "field", + "name": "Open", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.Positions", + "kind": "field", + "name": "Positions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Profile.TotalOutsidePoints", + "kind": "field", + "name": "TotalOutsidePoints", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.ProfileFace", + "namespace": "LibreMetaverse.Rendering", + "name": "ProfileFace", + "signature": "LibreMetaverse.Rendering.ProfileFace", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Cap", + "kind": "field", + "name": "Cap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Count", + "kind": "field", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Flat", + "kind": "field", + "name": "Flat", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Index", + "kind": "field", + "name": "Index", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.ProfileFace.ScaleU", + "kind": "field", + "name": "ScaleU", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.ProfileFace.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.RendererNameAttribute", + "namespace": "LibreMetaverse.Rendering", + "name": "RendererNameAttribute", + "signature": "LibreMetaverse.Rendering.RendererNameAttribute", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Attribute", + "interfaces": [], + "attributes": [ + { + "type": "System.AttributeUsageAttribute", + "constructor_arguments": [ + { + "type": "System.AttributeTargets", + "value": "4" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.RendererNameAttribute.#ctor(System.String)", + "kind": "constructor", + "name": "RendererNameAttribute", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.RendererNameAttribute.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.RenderingException", + "namespace": "LibreMetaverse.Rendering", + "name": "RenderingException", + "signature": "LibreMetaverse.Rendering.RenderingException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.RenderingException.#ctor(System.String)", + "kind": "constructor", + "name": "RenderingException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.RenderingException.#ctor(System.String,System.Exception)", + "kind": "constructor", + "name": "RenderingException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "innerException", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.RenderingLoader", + "namespace": "LibreMetaverse.Rendering", + "name": "RenderingLoader", + "signature": "LibreMetaverse.Rendering.RenderingLoader", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.RenderingLoader.ListRenderers(System.String)", + "kind": "method", + "name": "ListRenderers", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Discovers rendering plugins by loading assemblies from disk at runtime." + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Inspects loaded assembly types using runtime reflection. Not AOT-safe." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.RenderingLoader.LoadRenderer(System.String)", + "kind": "method", + "name": "LoadRenderer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Rendering.IRendering", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "filename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Loads a rendering plugin assembly from disk at runtime." + } + ], + "named_arguments": [] + }, + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Instantiates types from loaded assemblies using runtime reflection. Not AOT-safe." + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.RiggedSkinMath", + "namespace": "LibreMetaverse.Rendering", + "name": "RiggedSkinMath", + "signature": "LibreMetaverse.Rendering.RiggedSkinMath", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.BuildInvBindMatrices(LibreMetaverse.Rendering.MeshSkinData)", + "kind": "method", + "name": "BuildInvBindMatrices", + "static": true, + "visibility": "public", + "type": "System.Numerics.Matrix4x4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "skin", + "type": "LibreMetaverse.Rendering.MeshSkinData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.ExtractJointPositionOverrides(LibreMetaverse.Rendering.MeshSkinData)", + "kind": "method", + "name": "ExtractJointPositionOverrides", + "static": true, + "visibility": "public", + "type": "System.ValueTuple\u003CSystem.String, System.Numerics.Vector3\u003E[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "JointName" + }, + { + "type": "System.String", + "value": "Position" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "skin", + "type": "LibreMetaverse.Rendering.MeshSkinData", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.FloatsToMatrix(System.Single[])", + "kind": "method", + "name": "FloatsToMatrix", + "static": true, + "visibility": "public", + "type": "System.Numerics.Matrix4x4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "f", + "type": "System.Single[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "kind": "method", + "name": "NormalizeSkinWeights", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "jointCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "j0", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w0", + "type": "System.Single\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "j1", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w1", + "type": "System.Single\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "j2", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w2", + "type": "System.Single\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "j3", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w3", + "type": "System.Single\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.SimpleMesh", + "namespace": "LibreMetaverse.Rendering", + "name": "SimpleMesh", + "signature": "LibreMetaverse.Rendering.SimpleMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Rendering.Mesh", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.SimpleMesh.Indices", + "kind": "field", + "name": "Indices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.UInt16\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.SimpleMesh.Vertices", + "kind": "field", + "name": "Vertices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleMesh.#ctor", + "kind": "constructor", + "name": "SimpleMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleMesh.#ctor(LibreMetaverse.Rendering.SimpleMesh)", + "kind": "constructor", + "name": "SimpleMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mesh", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.Vertex", + "namespace": "LibreMetaverse.Rendering", + "name": "Vertex", + "signature": "LibreMetaverse.Rendering.Vertex", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Rendering.Vertex\u003E" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.Vertex.Normal", + "kind": "field", + "name": "Normal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.InteropServices.FieldOffsetAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "12" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Vertex.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.InteropServices.FieldOffsetAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.Vertex.TexCoord", + "kind": "field", + "name": "TexCoord", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.InteropServices.FieldOffsetAttribute", + "constructor_arguments": [ + { + "type": "System.Int32", + "value": "24" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Vertex.Equals(LibreMetaverse.Rendering.Vertex)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Rendering.Vertex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Vertex.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Vertex.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Vertex.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Vertex.op_Equality(LibreMetaverse.Rendering.Vertex,LibreMetaverse.Rendering.Vertex)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Rendering.Vertex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Rendering.Vertex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.Vertex.op_Inequality(LibreMetaverse.Rendering.Vertex,LibreMetaverse.Rendering.Vertex)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Rendering.Vertex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Rendering.Vertex", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Rendering.VertexWeight", + "namespace": "LibreMetaverse.Rendering", + "name": "VertexWeight", + "signature": "LibreMetaverse.Rendering.VertexWeight", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint0", + "kind": "field", + "name": "Joint0", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint1", + "kind": "field", + "name": "Joint1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint2", + "kind": "field", + "name": "Joint2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint3", + "kind": "field", + "name": "Joint3", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight0", + "kind": "field", + "name": "Weight0", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight1", + "kind": "field", + "name": "Weight1", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight2", + "kind": "field", + "name": "Weight2", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight3", + "kind": "field", + "name": "Weight3", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Repeat", + "namespace": "LibreMetaverse", + "name": "Repeat", + "signature": "LibreMetaverse.Repeat", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Repeat.Interval(System.TimeSpan,System.Action,System.Threading.CancellationToken,System.Boolean)", + "kind": "method", + "name": "Interval", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pollInterval", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Action", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "token", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "immediately", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "kind": "method", + "name": "IntervalAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pollInterval", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "asyncAction", + "type": "System.Func\u003CSystem.Threading.Tasks.Task\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "token", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "immediately", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ReportType", + "namespace": "LibreMetaverse", + "name": "ReportType", + "signature": "LibreMetaverse.ReportType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ReportType.Bug", + "kind": "enum_value", + "name": "Bug", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ReportType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ReportType.Complaint", + "kind": "enum_value", + "name": "Complaint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ReportType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ReportType.CustomerServiceRequest", + "kind": "enum_value", + "name": "CustomerServiceRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ReportType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ReportType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ReportType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ReportType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ReportType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ReportType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SaveAssetToInventoryEventArgs", + "namespace": "LibreMetaverse", + "name": "SaveAssetToInventoryEventArgs", + "signature": "LibreMetaverse.SaveAssetToInventoryEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.SaveAssetToInventoryEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "SaveAssetToInventoryEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "newAssetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SaveAssetToInventoryEventArgs.ItemID", + "kind": "property", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SaveAssetToInventoryEventArgs.NewAssetID", + "kind": "property", + "name": "NewAssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptControlChange", + "namespace": "LibreMetaverse", + "name": "ScriptControlChange", + "signature": "LibreMetaverse.ScriptControlChange", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.Back", + "kind": "enum_value", + "name": "Back", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.Down", + "kind": "enum_value", + "name": "Down", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.Forward", + "kind": "enum_value", + "name": "Forward", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.Left", + "kind": "enum_value", + "name": "Left", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.LeftButton", + "kind": "enum_value", + "name": "LeftButton", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "268435456" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.MouseLookLeftButton", + "kind": "enum_value", + "name": "MouseLookLeftButton", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "1073741824" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.Right", + "kind": "enum_value", + "name": "Right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.RotateLeft", + "kind": "enum_value", + "name": "RotateLeft", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.RotateRight", + "kind": "enum_value", + "name": "RotateRight", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptControlChange.Up", + "kind": "enum_value", + "name": "Up", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptControlChange", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptControlEventArgs", + "namespace": "LibreMetaverse", + "name": "ScriptControlEventArgs", + "signature": "LibreMetaverse.ScriptControlEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ScriptControlEventArgs.#ctor(LibreMetaverse.ScriptControlChange,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "ScriptControlEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "controls", + "type": "LibreMetaverse.ScriptControlChange", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pass", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "take", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptControlEventArgs.Controls", + "kind": "property", + "name": "Controls", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ScriptControlChange", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptControlEventArgs.Pass", + "kind": "property", + "name": "Pass", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptControlEventArgs.Take", + "kind": "property", + "name": "Take", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptDialogEventArgs", + "namespace": "LibreMetaverse", + "name": "ScriptDialogEventArgs", + "signature": "LibreMetaverse.ScriptDialogEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "kind": "constructor", + "name": "ScriptDialogEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "imageID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "chatChannel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "buttons", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ButtonLabels", + "kind": "property", + "name": "ButtonLabels", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.Channel", + "kind": "property", + "name": "Channel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.FirstName", + "kind": "property", + "name": "FirstName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ImageID", + "kind": "property", + "name": "ImageID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.LastName", + "kind": "property", + "name": "LastName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ObjectName", + "kind": "property", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptPermission", + "namespace": "LibreMetaverse", + "name": "ScriptPermission", + "signature": "LibreMetaverse.ScriptPermission", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ScriptPermission.Attach", + "kind": "enum_value", + "name": "Attach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.ChangeJoints", + "kind": "enum_value", + "name": "ChangeJoints", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.ChangeLinks", + "kind": "enum_value", + "name": "ChangeLinks", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.ChangePermissions", + "kind": "enum_value", + "name": "ChangePermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.ControlCamera", + "kind": "enum_value", + "name": "ControlCamera", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.Debit", + "kind": "enum_value", + "name": "Debit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.ReleaseOwnership", + "kind": "enum_value", + "name": "ReleaseOwnership", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.RemapControls", + "kind": "enum_value", + "name": "RemapControls", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.TakeControls", + "kind": "enum_value", + "name": "TakeControls", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.Teleport", + "kind": "enum_value", + "name": "Teleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.TrackCamera", + "kind": "enum_value", + "name": "TrackCamera", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptPermission.TriggerAnimation", + "kind": "enum_value", + "name": "TriggerAnimation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptPermission", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptQuestionEventArgs", + "namespace": "LibreMetaverse", + "name": "ScriptQuestionEventArgs", + "signature": "LibreMetaverse.ScriptQuestionEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ScriptQuestionEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.ScriptPermission)", + "kind": "constructor", + "name": "ScriptQuestionEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "taskID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectOwner", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "questions", + "type": "LibreMetaverse.ScriptPermission", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.ItemID", + "kind": "property", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.ObjectName", + "kind": "property", + "name": "ObjectName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.ObjectOwnerName", + "kind": "property", + "name": "ObjectOwnerName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.Questions", + "kind": "property", + "name": "Questions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ScriptPermission", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.TaskID", + "kind": "property", + "name": "TaskID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptRunningReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ScriptRunningReplyEventArgs", + "signature": "LibreMetaverse.ScriptRunningReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ScriptRunningReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "ScriptRunningReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sctriptID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isMono", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isRunning", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptRunningReplyEventArgs.IsMono", + "kind": "property", + "name": "IsMono", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptRunningReplyEventArgs.IsRunning", + "kind": "property", + "name": "IsRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptRunningReplyEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptRunningReplyEventArgs.ScriptID", + "kind": "property", + "name": "ScriptID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptSensorReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "ScriptSensorReplyEventArgs", + "signature": "LibreMetaverse.ScriptSensorReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ScriptSensorReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3,System.Single,LibreMetaverse.Quaternion,LibreMetaverse.ScriptSensorTypeFlags,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "ScriptSensorReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "requesterId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "range", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "velocity", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.GroupID", + "kind": "property", + "name": "GroupID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Range", + "kind": "property", + "name": "Range", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.RequesterID", + "kind": "property", + "name": "RequesterID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Rotation", + "kind": "property", + "name": "Rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Velocity", + "kind": "property", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ScriptSensorTypeFlags", + "namespace": "LibreMetaverse", + "name": "ScriptSensorTypeFlags", + "signature": "LibreMetaverse.ScriptSensorTypeFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ScriptSensorTypeFlags.Active", + "kind": "enum_value", + "name": "Active", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptSensorTypeFlags.Agent", + "kind": "enum_value", + "name": "Agent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptSensorTypeFlags.Passive", + "kind": "enum_value", + "name": "Passive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ScriptSensorTypeFlags.Scripted", + "kind": "enum_value", + "name": "Scripted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ScriptSensorTypeFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SetDisplayNameReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "SetDisplayNameReplyEventArgs", + "signature": "LibreMetaverse.SetDisplayNameReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SetDisplayNameReplyEventArgs.#ctor(System.Int32,System.String,LibreMetaverse.AgentDisplayName)", + "kind": "constructor", + "name": "SetDisplayNameReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "status", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reason", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "displayName", + "type": "LibreMetaverse.AgentDisplayName", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SetDisplayNameReplyEventArgs.DisplayName", + "kind": "property", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentDisplayName", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SetDisplayNameReplyEventArgs.Reason", + "kind": "property", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SetDisplayNameReplyEventArgs.Status", + "kind": "property", + "name": "Status", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Settings", + "namespace": "LibreMetaverse", + "name": "Settings", + "signature": "LibreMetaverse.Settings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Settings.AditiLoginServer", + "kind": "constant", + "name": "AditiLoginServer", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "https://login.aditi.lindenlab.com/cgi-bin/login.cgi" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.AgniLoginServer", + "kind": "constant", + "name": "AgniLoginServer", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "https://login.agni.lindenlab.com/cgi-bin/login.cgi" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.BindAddress", + "kind": "field", + "name": "BindAddress", + "static": true, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.DefaultEffectColor", + "kind": "field", + "name": "DefaultEffectColor", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.EnableInventoryStore", + "kind": "constant", + "name": "EnableInventoryStore", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Boolean", + "value": "True" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.EnableLibraryStore", + "kind": "constant", + "name": "EnableLibraryStore", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Boolean", + "value": "True" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.LogLevel", + "kind": "field", + "name": "LogLevel", + "static": true, + "visibility": "public", + "type": "Microsoft.Extensions.Logging.LogLevel", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.MaxHttpConnections", + "kind": "field", + "name": "MaxHttpConnections", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.MaxPacketSize", + "kind": "constant", + "name": "MaxPacketSize", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "1200" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.MaxSequence", + "kind": "constant", + "name": "MaxSequence", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "16777215" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.NetworkTickInterval", + "kind": "constant", + "name": "NetworkTickInterval", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "500" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.PacketArchiveSize", + "kind": "field", + "name": "PacketArchiveSize", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.PingInterval", + "kind": "constant", + "name": "PingInterval", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "2200" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.ResourceDir", + "kind": "field", + "name": "ResourceDir", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.SimulatorPoolTimeout", + "kind": "field", + "name": "SimulatorPoolTimeout", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.TexturePipelineRefreshInterval", + "kind": "field", + "name": "TexturePipelineRefreshInterval", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.UdpReceiveQueueCapacity", + "kind": "field", + "name": "UdpReceiveQueueCapacity", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Settings.UserAgent", + "kind": "field", + "name": "UserAgent", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Settings.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "Settings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.Agent", + "kind": "property", + "name": "Agent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AgentSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.AssetCache", + "kind": "property", + "name": "AssetCache", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetCacheSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.Connection", + "kind": "property", + "name": "Connection", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ConnectionSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.Logging", + "kind": "property", + "name": "Logging", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LoggingSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.Packets", + "kind": "property", + "name": "Packets", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PacketSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.Parcel", + "kind": "property", + "name": "Parcel", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ParcelSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.TexturePipeline", + "kind": "property", + "name": "TexturePipeline", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TexturePipelineSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.Timing", + "kind": "property", + "name": "Timing", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TimingSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.UploadCost", + "kind": "property", + "name": "UploadCost", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "internal", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "internal", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Settings.World", + "kind": "property", + "name": "World", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.WorldSettings", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Shininess", + "namespace": "LibreMetaverse", + "name": "Shininess", + "signature": "LibreMetaverse.Shininess", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Shininess.High", + "kind": "enum_value", + "name": "High", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Shininess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Shininess", + "value": "192" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Shininess.Low", + "kind": "enum_value", + "name": "Low", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Shininess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Shininess", + "value": "64" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Shininess.Medium", + "kind": "enum_value", + "name": "Medium", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Shininess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Shininess", + "value": "128" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Shininess.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Shininess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Shininess", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimAccess", + "namespace": "LibreMetaverse", + "name": "SimAccess", + "signature": "LibreMetaverse.SimAccess", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.SimAccess.Adult", + "kind": "enum_value", + "name": "Adult", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "42" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimAccess.Down", + "kind": "enum_value", + "name": "Down", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "254" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimAccess.Mature", + "kind": "enum_value", + "name": "Mature", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "21" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimAccess.NonExistent", + "kind": "enum_value", + "name": "NonExistent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "255" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimAccess.PG", + "kind": "enum_value", + "name": "PG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "13" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimAccess.Trial", + "kind": "enum_value", + "name": "Trial", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimAccess.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SimAccess", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimChangedEventArgs", + "namespace": "LibreMetaverse", + "name": "SimChangedEventArgs", + "signature": "LibreMetaverse.SimChangedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SimChangedEventArgs.#ctor(LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "SimChangedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "previousSimulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimChangedEventArgs.PreviousSimulator", + "kind": "property", + "name": "PreviousSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimConnectedEventArgs", + "namespace": "LibreMetaverse", + "name": "SimConnectedEventArgs", + "signature": "LibreMetaverse.SimConnectedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SimConnectedEventArgs.#ctor(LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "SimConnectedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimConnectedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimConnectingEventArgs", + "namespace": "LibreMetaverse", + "name": "SimConnectingEventArgs", + "signature": "LibreMetaverse.SimConnectingEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SimConnectingEventArgs.#ctor(LibreMetaverse.Simulator)", + "kind": "constructor", + "name": "SimConnectingEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimConnectingEventArgs.Cancel", + "kind": "property", + "name": "Cancel", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimConnectingEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimDisconnectedEventArgs", + "namespace": "LibreMetaverse", + "name": "SimDisconnectedEventArgs", + "signature": "LibreMetaverse.SimDisconnectedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SimDisconnectedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.NetworkManager.DisconnectType,System.Boolean)", + "kind": "constructor", + "name": "SimDisconnectedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reason", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wasConnected", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimDisconnectedEventArgs.Reason", + "kind": "property", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.NetworkManager.DisconnectType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimDisconnectedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimDisconnectedEventArgs.WasConnected", + "kind": "property", + "name": "WasConnected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimParcelsDownloadedEventArgs", + "namespace": "LibreMetaverse", + "name": "SimParcelsDownloadedEventArgs", + "signature": "LibreMetaverse.SimParcelsDownloadedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SimParcelsDownloadedEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Concurrent.ConcurrentDictionary{System.Int32,LibreMetaverse.Parcel},System.Int32[0:,0:])", + "kind": "constructor", + "name": "SimParcelsDownloadedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "simParcels", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "parcelMap", + "type": "System.Int32[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimParcelsDownloadedEventArgs.ParcelMap", + "kind": "property", + "name": "ParcelMap", + "static": false, + "visibility": "public", + "type": "System.Int32[,]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimParcelsDownloadedEventArgs.Parcels", + "kind": "property", + "name": "Parcels", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SimParcelsDownloadedEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Simulator", + "namespace": "LibreMetaverse", + "name": "Simulator", + "signature": "LibreMetaverse.Simulator", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.UDPBase", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Simulator.Access", + "kind": "field", + "name": "Access", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimAccess", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.AgentMovementComplete", + "kind": "field", + "name": "AgentMovementComplete", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.BillableFactor", + "kind": "field", + "name": "BillableFactor", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.CPUClass", + "kind": "field", + "name": "CPUClass", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.CPURatio", + "kind": "field", + "name": "CPURatio", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Caps", + "kind": "field", + "name": "Caps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Caps", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Client", + "kind": "field", + "name": "Client", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.GridClient", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ColoLocation", + "kind": "field", + "name": "ColoLocation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.DataPool", + "kind": "field", + "name": "DataPool", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimulatorDataPool", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.DefaultRegionSizeX", + "kind": "constant", + "name": "DefaultRegionSizeX", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.UInt32", + "value": "256" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.DefaultRegionSizeY", + "kind": "constant", + "name": "DefaultRegionSizeY", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.UInt32", + "value": "256" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Features", + "kind": "field", + "name": "Features", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SimulatorFeatures", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Flags", + "kind": "field", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RegionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.GlobalToLocalID", + "kind": "field", + "name": "GlobalToLocalID", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, System.UInt32\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Handle", + "kind": "field", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.IsEstateManager", + "kind": "field", + "name": "IsEstateManager", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ObjectsAvatars", + "kind": "field", + "name": "ObjectsAvatars", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.UInt32, LibreMetaverse.Avatar\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ObjectsPrimitives", + "kind": "field", + "name": "ObjectsPrimitives", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.UInt32, LibreMetaverse.Primitive\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ParcelOverlay", + "kind": "field", + "name": "ParcelOverlay", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ParcelOverlaysReceived", + "kind": "field", + "name": "ParcelOverlaysReceived", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ProductName", + "kind": "field", + "name": "ProductName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.ProductSku", + "kind": "field", + "name": "ProductSku", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Protocols", + "kind": "field", + "name": "Protocols", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RegionProtocols", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.RegionID", + "kind": "field", + "name": "RegionID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Sequence", + "kind": "field", + "name": "Sequence", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.SimOwner", + "kind": "field", + "name": "SimOwner", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.SimVersion", + "kind": "field", + "name": "SimVersion", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.SizeX", + "kind": "field", + "name": "SizeX", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.SizeY", + "kind": "field", + "name": "SizeY", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Stats", + "kind": "field", + "name": "Stats", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator.SimStats", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.Terrain", + "kind": "field", + "name": "Terrain", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainBase0", + "kind": "field", + "name": "TerrainBase0", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainBase1", + "kind": "field", + "name": "TerrainBase1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainBase2", + "kind": "field", + "name": "TerrainBase2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainBase3", + "kind": "field", + "name": "TerrainBase3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainDetail0", + "kind": "field", + "name": "TerrainDetail0", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainDetail1", + "kind": "field", + "name": "TerrainDetail1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainDetail2", + "kind": "field", + "name": "TerrainDetail2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainDetail3", + "kind": "field", + "name": "TerrainDetail3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange00", + "kind": "field", + "name": "TerrainHeightRange00", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange01", + "kind": "field", + "name": "TerrainHeightRange01", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange10", + "kind": "field", + "name": "TerrainHeightRange10", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange11", + "kind": "field", + "name": "TerrainHeightRange11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight00", + "kind": "field", + "name": "TerrainStartHeight00", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight01", + "kind": "field", + "name": "TerrainStartHeight01", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight10", + "kind": "field", + "name": "TerrainStartHeight10", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight11", + "kind": "field", + "name": "TerrainStartHeight11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.WaterHeight", + "kind": "field", + "name": "WaterHeight", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Simulator.WindSpeeds", + "kind": "field", + "name": "WindSpeeds", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.#ctor(LibreMetaverse.GridClient,System.Net.IPEndPoint,System.UInt64,System.UInt32,System.UInt32)", + "kind": "constructor", + "name": "Simulator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "address", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sizeX", + "type": "System.UInt32", + "passing": "value", + "optional": true, + "default": { + "type": "System.UInt32", + "value": "256" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sizeY", + "type": "System.UInt32", + "passing": "value", + "optional": true, + "default": { + "type": "System.UInt32", + "value": "256" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.Connect(System.Boolean)", + "kind": "method", + "name": "Connect", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "moveToSim", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.ConnectAsync(System.Boolean)", + "kind": "method", + "name": "ConnectAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "moveToSim", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Simulator.\u003CConnectAsync\u003Ed__99" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.Disconnect(System.Boolean)", + "kind": "method", + "name": "Disconnect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sendCloseCircuit", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.IsEventQueueRunning(System.Boolean)", + "kind": "method", + "name": "IsEventQueueRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "blockUntilRunning", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.IsParcelMapFull", + "kind": "method", + "name": "IsParcelMapFull", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.Pause", + "kind": "method", + "name": "Pause", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.Resume", + "kind": "method", + "name": "Resume", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SendPacket(LibreMetaverse.Packets.Packet)", + "kind": "method", + "name": "SendPacket", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "packet", + "type": "LibreMetaverse.Packets.Packet", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SendPacketData(System.Byte[],System.Int32,LibreMetaverse.Packets.PacketType,System.Boolean)", + "kind": "method", + "name": "SendPacketData", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dataLength", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.Packets.PacketType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "doZerocode", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SendPing", + "kind": "method", + "name": "SendPing", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SetSeedCaps(System.Uri,System.Boolean)", + "kind": "method", + "name": "SetSeedCaps", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "seedcaps", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "changedSim", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.TerrainHeightAtPoint(System.Int32,System.Int32,System.Single@)", + "kind": "method", + "name": "TerrainHeightAtPoint", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "height", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.UseCircuitCode(System.Boolean)", + "kind": "method", + "name": "UseCircuitCode", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "waitForAck", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.UseCircuitCodeAsync(System.Boolean)", + "kind": "method", + "name": "UseCircuitCodeAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "waitForAck", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Simulator.\u003CUseCircuitCodeAsync\u003Ed__101" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.op_Equality(LibreMetaverse.Simulator,LibreMetaverse.Simulator)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.op_Inequality(LibreMetaverse.Simulator,LibreMetaverse.Simulator)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.Connected", + "kind": "property", + "name": "Connected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.HandshakeComplete", + "kind": "property", + "name": "HandshakeComplete", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.IPEndPoint", + "kind": "property", + "name": "IPEndPoint", + "static": false, + "visibility": "public", + "type": "System.Net.IPEndPoint", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.ParcelMap", + "kind": "property", + "name": "ParcelMap", + "static": false, + "visibility": "public", + "type": "System.Int32[,]", + "nullability": { + "read": "notnull", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.Parcels", + "kind": "property", + "name": "Parcels", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.PreyID", + "kind": "property", + "name": "PreyID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Simulator.SimStats", + "namespace": "LibreMetaverse", + "name": "SimStats", + "signature": "LibreMetaverse.Simulator.SimStats", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.#ctor", + "kind": "constructor", + "name": "SimStats", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.AddRecvBytes(System.Int64)", + "kind": "method", + "name": "AddRecvBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.AddSentBytes(System.Int64)", + "kind": "method", + "name": "AddSentBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetAndIncrementLastPingID", + "kind": "method", + "name": "GetAndIncrementLastPingID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetConnectTime", + "kind": "method", + "name": "GetConnectTime", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetDroppedPackets", + "kind": "method", + "name": "GetDroppedPackets", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetIncomingBPS", + "kind": "method", + "name": "GetIncomingBPS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetLastPingSent", + "kind": "method", + "name": "GetLastPingSent", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetOutgoingBPS", + "kind": "method", + "name": "GetOutgoingBPS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetReceivedPongs", + "kind": "method", + "name": "GetReceivedPongs", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetReceivedResends", + "kind": "method", + "name": "GetReceivedResends", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetRecvBytes", + "kind": "method", + "name": "GetRecvBytes", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetRecvPackets", + "kind": "method", + "name": "GetRecvPackets", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetResentPackets", + "kind": "method", + "name": "GetResentPackets", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetSentBytes", + "kind": "method", + "name": "GetSentBytes", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetSentPackets", + "kind": "method", + "name": "GetSentPackets", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.GetSentPings", + "kind": "method", + "name": "GetSentPings", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementDroppedPackets", + "kind": "method", + "name": "IncrementDroppedPackets", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementReceivedPongs", + "kind": "method", + "name": "IncrementReceivedPongs", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementReceivedResends", + "kind": "method", + "name": "IncrementReceivedResends", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementRecvPackets", + "kind": "method", + "name": "IncrementRecvPackets", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementResentPackets", + "kind": "method", + "name": "IncrementResentPackets", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementSentPackets", + "kind": "method", + "name": "IncrementSentPackets", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementSentPings", + "kind": "method", + "name": "IncrementSentPings", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.SetConnectTime(System.Int32)", + "kind": "method", + "name": "SetConnectTime", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.SetIncomingBPS(System.Int32)", + "kind": "method", + "name": "SetIncomingBPS", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.SetLastPingSent(System.Int32)", + "kind": "method", + "name": "SetLastPingSent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Simulator.SimStats.SetOutgoingBPS(System.Int32)", + "kind": "method", + "name": "SetOutgoingBPS", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.ActiveScripts", + "kind": "property", + "name": "ActiveScripts", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.AgentTime", + "kind": "property", + "name": "AgentTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.AgentUpdates", + "kind": "property", + "name": "AgentUpdates", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.Agents", + "kind": "property", + "name": "Agents", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.ChildAgents", + "kind": "property", + "name": "ChildAgents", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.Dilation", + "kind": "property", + "name": "Dilation", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.FPS", + "kind": "property", + "name": "FPS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.FrameTime", + "kind": "property", + "name": "FrameTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.INPPS", + "kind": "property", + "name": "INPPS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.ImageTime", + "kind": "property", + "name": "ImageTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.LSLIPS", + "kind": "property", + "name": "LSLIPS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.LastLag", + "kind": "property", + "name": "LastLag", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.MissedPings", + "kind": "property", + "name": "MissedPings", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.NetTime", + "kind": "property", + "name": "NetTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.OUTPPS", + "kind": "property", + "name": "OUTPPS", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.Objects", + "kind": "property", + "name": "Objects", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.OtherTime", + "kind": "property", + "name": "OtherTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.PendingDownloads", + "kind": "property", + "name": "PendingDownloads", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.PendingLocalUploads", + "kind": "property", + "name": "PendingLocalUploads", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.PendingUploads", + "kind": "property", + "name": "PendingUploads", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.PhysicsFPS", + "kind": "property", + "name": "PhysicsFPS", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.PhysicsTime", + "kind": "property", + "name": "PhysicsTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.ResidentSize", + "kind": "property", + "name": "ResidentSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.ScriptTime", + "kind": "property", + "name": "ScriptTime", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.ScriptedObjects", + "kind": "property", + "name": "ScriptedObjects", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.UnackedBytes", + "kind": "property", + "name": "UnackedBytes", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Simulator.SimStats.VirtualSize", + "kind": "property", + "name": "VirtualSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimulatorDataPool", + "namespace": "LibreMetaverse", + "name": "SimulatorDataPool", + "signature": "LibreMetaverse.SimulatorDataPool", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.ActiveClients", + "kind": "field", + "name": "ActiveClients", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.DownloadingParcelMap", + "kind": "field", + "name": "DownloadingParcelMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.Handle", + "kind": "field", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.InactiveSince", + "kind": "field", + "name": "InactiveSince", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.ParcelMap", + "kind": "field", + "name": "ParcelMap", + "static": false, + "visibility": "public", + "type": "System.Int32[,]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.Parcels", + "kind": "field", + "name": "Parcels", + "static": false, + "visibility": "public", + "type": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.PrimCache", + "kind": "field", + "name": "PrimCache", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.UInt32, LibreMetaverse.Primitive\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SimulatorDataPool.SimulatorDataPools", + "kind": "field", + "name": "SimulatorDataPools", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.UInt64, LibreMetaverse.SimulatorDataPool\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SimulatorDataPool.GetSimulatorData(System.UInt64)", + "kind": "method", + "name": "GetSimulatorData", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SimulatorDataPool", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "hndl", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SimulatorDataPool.ShutdownReaper", + "kind": "method", + "name": "ShutdownReaper", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SimulatorDataPool.SimulatorAdd(LibreMetaverse.Simulator)", + "kind": "method", + "name": "SimulatorAdd", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SimulatorDataPool.SimulatorRelease(LibreMetaverse.Simulator)", + "kind": "method", + "name": "SimulatorRelease", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SimulatorFeatures", + "namespace": "LibreMetaverse", + "name": "SimulatorFeatures", + "signature": "LibreMetaverse.SimulatorFeatures", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SimulatorFeatures.Get(System.String)", + "kind": "method", + "name": "Get", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "feature", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SimulatorFeatures.Has(System.String)", + "kind": "method", + "name": "Has", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "feature", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SimulatorFeatures.SetFeatures(System.Net.Http.HttpResponseMessage,System.Byte[],System.Exception)", + "kind": "method", + "name": "SetFeatures", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "response", + "type": "System.Net.Http.HttpResponseMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "responseData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "error", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SkeletalBoneInfo", + "namespace": "LibreMetaverse", + "name": "SkeletalBoneInfo", + "signature": "LibreMetaverse.SkeletalBoneInfo", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.SkeletalBoneInfo.BoneName", + "kind": "field", + "name": "BoneName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SkeletalBoneInfo.HasPositionDeformation", + "kind": "field", + "name": "HasPositionDeformation", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SkeletalBoneInfo.PositionDeformation", + "kind": "field", + "name": "PositionDeformation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SkeletalBoneInfo.ScaleDeformation", + "kind": "field", + "name": "ScaleDeformation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SkeletalBoneInfo.#ctor(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "kind": "constructor", + "name": "SkeletalBoneInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "boneName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleDeformation", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "positionDeformation", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hasPositionDeformation", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SlappCommand", + "namespace": "LibreMetaverse", + "name": "SlappCommand", + "signature": "LibreMetaverse.SlappCommand", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.SlappCommand.Agent", + "kind": "enum_value", + "name": "Agent", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Appearance", + "kind": "enum_value", + "name": "Appearance", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Balance", + "kind": "enum_value", + "name": "Balance", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Chat", + "kind": "enum_value", + "name": "Chat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Classified", + "kind": "enum_value", + "name": "Classified", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Event", + "kind": "enum_value", + "name": "Event", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Experience", + "kind": "enum_value", + "name": "Experience", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Group", + "kind": "enum_value", + "name": "Group", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Help", + "kind": "enum_value", + "name": "Help", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Inventory", + "kind": "enum_value", + "name": "Inventory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Keybinding", + "kind": "enum_value", + "name": "Keybinding", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Login", + "kind": "enum_value", + "name": "Login", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.MapTrackAvatar", + "kind": "enum_value", + "name": "MapTrackAvatar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.ObjectIm", + "kind": "enum_value", + "name": "ObjectIm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.OpenFloater", + "kind": "enum_value", + "name": "OpenFloater", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Parcel", + "kind": "enum_value", + "name": "Parcel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Region", + "kind": "enum_value", + "name": "Region", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Search", + "kind": "enum_value", + "name": "Search", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.ShareWithAvatar", + "kind": "enum_value", + "name": "ShareWithAvatar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Teleport", + "kind": "enum_value", + "name": "Teleport", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.VoiceCallAvatar", + "kind": "enum_value", + "name": "VoiceCallAvatar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.WearFolder", + "kind": "enum_value", + "name": "WearFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SlappCommand.WorldMap", + "kind": "enum_value", + "name": "WorldMap", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SlappCommand", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SlurlParser", + "namespace": "LibreMetaverse", + "name": "SlurlParser", + "signature": "LibreMetaverse.SlurlParser", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SlurlParser.#ctor(System.String)", + "kind": "constructor", + "name": "SlurlParser", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "location", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetAgentUrl(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "GetAgentUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String", + "value": "about" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetGroupUrl(LibreMetaverse.UUID,System.String)", + "kind": "method", + "name": "GetGroupUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String", + "value": "about" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetLoginUrl(System.String,System.String,System.String)", + "kind": "method", + "name": "GetLoginUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sessionId", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "location", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetObjectImUrl(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.String)", + "kind": "method", + "name": "GetObjectImUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupOwned", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "slurl", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetRawLocation", + "kind": "method", + "name": "GetRawLocation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetSearchUrl(System.String,System.String)", + "kind": "method", + "name": "GetSearchUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "category", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "searchTerm", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetSlappUrl(LibreMetaverse.SlappCommand,System.String,System.Collections.Generic.Dictionary{System.String,System.String})", + "kind": "method", + "name": "GetSlappUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "command", + "type": "LibreMetaverse.SlappCommand", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "queryParams", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetSlurl", + "kind": "method", + "name": "GetSlurl", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetStartLocationUri", + "kind": "method", + "name": "GetStartLocationUri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetTeleportUrl(System.String,System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "GetTeleportUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "region", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "128" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "128" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "z", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SlurlParser.GetWorldMapUrl(System.String,System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "GetWorldMapUrl", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "region", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "128" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "128" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "z", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "0" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.Command", + "kind": "property", + "name": "Command", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SlappCommand", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.CommandPath", + "kind": "property", + "name": "CommandPath", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.IsApplication", + "kind": "property", + "name": "IsApplication", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.IsLocation", + "kind": "property", + "name": "IsLocation", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.QueryParameters", + "kind": "property", + "name": "QueryParameters", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.Sim", + "kind": "property", + "name": "Sim", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.UriType", + "kind": "property", + "name": "UriType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ViewerUriType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.X", + "kind": "property", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.Y", + "kind": "property", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SlurlParser.Z", + "kind": "property", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SoundManager", + "namespace": "LibreMetaverse", + "name": "SoundManager", + "signature": "LibreMetaverse.SoundManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.SoundManager.AttachedSound", + "kind": "event", + "name": "AttachedSound", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AttachedSoundEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.SoundManager.AttachedSoundGainChange", + "kind": "event", + "name": "AttachedSoundGainChange", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.AttachedSoundGainChangeEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.SoundManager.PreloadSound", + "kind": "event", + "name": "PreloadSound", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.PreloadSoundEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.SoundManager.SoundTrigger", + "kind": "event", + "name": "SoundTrigger", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.SoundTriggerEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "SoundManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.PlaySound(LibreMetaverse.UUID)", + "kind": "method", + "name": "PlaySound", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Simulator,LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "SendSoundTrigger", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "kind": "method", + "name": "SendSoundTrigger", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "SendSoundTrigger", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,System.UInt64,LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "SendSoundTrigger", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SoundTriggerEventArgs", + "namespace": "LibreMetaverse", + "name": "SoundTriggerEventArgs", + "signature": "LibreMetaverse.SoundTriggerEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.SoundTriggerEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,System.UInt64,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "SoundTriggerEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sim", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "soundID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ownerID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "parentID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionHandle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.Gain", + "kind": "property", + "name": "Gain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.ObjectID", + "kind": "property", + "name": "ObjectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.OwnerID", + "kind": "property", + "name": "OwnerID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.ParentID", + "kind": "property", + "name": "ParentID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.RegionHandle", + "kind": "property", + "name": "RegionHandle", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.SoundID", + "kind": "property", + "name": "SoundID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Sounds", + "namespace": "LibreMetaverse", + "name": "Sounds", + "signature": "LibreMetaverse.Sounds", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Sounds.BELL_TING", + "kind": "field", + "name": "BELL_TING", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.CLICK", + "kind": "field", + "name": "CLICK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.HEALTH_REDUCTION_FEMALE", + "kind": "field", + "name": "HEALTH_REDUCTION_FEMALE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.HEALTH_REDUCTION_MALE", + "kind": "field", + "name": "HEALTH_REDUCTION_MALE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.IM_START", + "kind": "field", + "name": "IM_START", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.INSTANT_MESSAGE_NOTIFICATION", + "kind": "field", + "name": "INSTANT_MESSAGE_NOTIFICATION", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.INVALID_OPERATION", + "kind": "field", + "name": "INVALID_OPERATION", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.KEYBOARD_LOOP", + "kind": "field", + "name": "KEYBOARD_LOOP", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.MONEY_INCREASE_CASH_REGISTER_BELL", + "kind": "field", + "name": "MONEY_INCREASE_CASH_REGISTER_BELL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.MONEY_REDUCTION_COINS", + "kind": "field", + "name": "MONEY_REDUCTION_COINS", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.NULL_KEYSTROKE", + "kind": "field", + "name": "NULL_KEYSTROKE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION", + "kind": "field", + "name": "OBJECT_COLLISION", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION_FLESH", + "kind": "field", + "name": "OBJECT_COLLISION_FLESH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION_GLASS_BREAK", + "kind": "field", + "name": "OBJECT_COLLISION_GLASS_BREAK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION_METAL_CLUNK", + "kind": "field", + "name": "OBJECT_COLLISION_METAL_CLUNK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION_PLASTIC", + "kind": "field", + "name": "OBJECT_COLLISION_PLASTIC", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION_RUBBER", + "kind": "field", + "name": "OBJECT_COLLISION_RUBBER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_COLLISION_WOOD_SPLINTERING", + "kind": "field", + "name": "OBJECT_COLLISION_WOOD_SPLINTERING", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_CREATE_WHOOSH", + "kind": "field", + "name": "OBJECT_CREATE_WHOOSH", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_DELETE_SHAKE", + "kind": "field", + "name": "OBJECT_DELETE_SHAKE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.OBJECT_REZ", + "kind": "field", + "name": "OBJECT_REZ", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_APPEAR_DING", + "kind": "field", + "name": "PIE_MENU_APPEAR_DING", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT1", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT2", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT3", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT4", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT5", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT5", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT6", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT6", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.PIE_MENU_SLICE_HIGHLIGHT7", + "kind": "field", + "name": "PIE_MENU_SLICE_HIGHLIGHT7", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.SNAPSHOT", + "kind": "field", + "name": "SNAPSHOT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.TELEPORT_TEXTURE_APPLY", + "kind": "field", + "name": "TELEPORT_TEXTURE_APPLY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.THUNDER", + "kind": "field", + "name": "THUNDER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.WINDOW_CLOSE", + "kind": "field", + "name": "WINDOW_CLOSE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.WINDOW_OPEN", + "kind": "field", + "name": "WINDOW_OPEN", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Sounds.ZIPPER", + "kind": "field", + "name": "ZIPPER", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Sounds.ToDictionary", + "kind": "method", + "name": "ToDictionary", + "static": true, + "visibility": "public", + "type": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SourceType", + "namespace": "LibreMetaverse", + "name": "SourceType", + "signature": "LibreMetaverse.SourceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.SourceType.Asset", + "kind": "enum_value", + "name": "Asset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SourceType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SourceType.SimEstate", + "kind": "enum_value", + "name": "SimEstate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SourceType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SourceType.SimInventoryItem", + "kind": "enum_value", + "name": "SimInventoryItem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SourceType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SourceType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SourceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SourceType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Stats.Type", + "namespace": "LibreMetaverse.Stats", + "name": "Type", + "signature": "LibreMetaverse.Stats.Type", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Stats.Type.Message", + "kind": "enum_value", + "name": "Message", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Stats.Type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Stats.Type", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Stats.Type.Packet", + "kind": "enum_value", + "name": "Packet", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Stats.Type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Stats.Type", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Stats.UtilizationStatistics", + "namespace": "LibreMetaverse.Stats", + "name": "UtilizationStatistics", + "signature": "LibreMetaverse.Stats.UtilizationStatistics", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Stats.UtilizationStatistics.#ctor", + "kind": "constructor", + "name": "UtilizationStatistics", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Stats.UtilizationStatistics.GetStatistics", + "kind": "method", + "name": "GetStatistics", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Stats.UtilizationStatistics.Stat\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Stats.UtilizationStatistics.Stat", + "namespace": "LibreMetaverse.Stats", + "name": "Stat", + "signature": "LibreMetaverse.Stats.UtilizationStatistics.Stat", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Stats.UtilizationStatistics.Stat.#ctor", + "kind": "constructor", + "name": "Stat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.RxBytes", + "kind": "property", + "name": "RxBytes", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.RxCount", + "kind": "property", + "name": "RxCount", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.TxBytes", + "kind": "property", + "name": "TxBytes", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.TxCount", + "kind": "property", + "name": "TxCount", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Stats.Type", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StatusCode", + "namespace": "LibreMetaverse", + "name": "StatusCode", + "signature": "LibreMetaverse.StatusCode", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.StatusCode.Abort", + "kind": "enum_value", + "name": "Abort", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.Done", + "kind": "enum_value", + "name": "Done", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.Error", + "kind": "enum_value", + "name": "Error", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.InsufficientPermissions", + "kind": "enum_value", + "name": "InsufficientPermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "-3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.OK", + "kind": "enum_value", + "name": "OK", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.Skip", + "kind": "enum_value", + "name": "Skip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "-4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StatusCode.UnknownSource", + "kind": "enum_value", + "name": "UnknownSource", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StatusCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StatusCode", + "value": "-2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TargetType", + "namespace": "LibreMetaverse", + "name": "TargetType", + "signature": "LibreMetaverse.TargetType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TargetType.File", + "kind": "enum_value", + "name": "File", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TargetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TargetType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TargetType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TargetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TargetType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TargetType.VFile", + "kind": "enum_value", + "name": "VFile", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TargetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TargetType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TaskInventoryReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "TaskInventoryReplyEventArgs", + "signature": "LibreMetaverse.TaskInventoryReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TaskInventoryReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int16,System.String)", + "kind": "constructor", + "name": "TaskInventoryReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "serial", + "type": "System.Int16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetFilename", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskInventoryReplyEventArgs.AssetFilename", + "kind": "property", + "name": "AssetFilename", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskInventoryReplyEventArgs.ItemID", + "kind": "property", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskInventoryReplyEventArgs.Serial", + "kind": "property", + "name": "Serial", + "static": false, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TaskItemReceivedEventArgs", + "namespace": "LibreMetaverse", + "name": "TaskItemReceivedEventArgs", + "signature": "LibreMetaverse.TaskItemReceivedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.TaskItemReceivedEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.InventoryType)", + "kind": "constructor", + "name": "TaskItemReceivedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "creatorID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "assetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskItemReceivedEventArgs.AssetID", + "kind": "property", + "name": "AssetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskItemReceivedEventArgs.CreatorID", + "kind": "property", + "name": "CreatorID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskItemReceivedEventArgs.FolderID", + "kind": "property", + "name": "FolderID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskItemReceivedEventArgs.ItemID", + "kind": "property", + "name": "ItemID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TaskItemReceivedEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TeleportEventArgs", + "namespace": "LibreMetaverse", + "name": "TeleportEventArgs", + "signature": "LibreMetaverse.TeleportEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TeleportEventArgs.#ctor(System.String,LibreMetaverse.TeleportStatus,LibreMetaverse.TeleportFlags)", + "kind": "constructor", + "name": "TeleportEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "status", + "type": "LibreMetaverse.TeleportStatus", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "flags", + "type": "LibreMetaverse.TeleportFlags", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TeleportEventArgs.Flags", + "kind": "property", + "name": "Flags", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TeleportEventArgs.Message", + "kind": "property", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TeleportEventArgs.Status", + "kind": "property", + "name": "Status", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TeleportFlags", + "namespace": "LibreMetaverse", + "name": "TeleportFlags", + "signature": "LibreMetaverse.TeleportFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.TeleportFlags.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.DisableCancel", + "kind": "enum_value", + "name": "DisableCancel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.FinishedViaLure", + "kind": "enum_value", + "name": "FinishedViaLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "67108864" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.FinishedViaNewSim", + "kind": "enum_value", + "name": "FinishedViaNewSim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "268435456" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.FinishedViaSameSim", + "kind": "enum_value", + "name": "FinishedViaSameSim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "536870912" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ForceRedirect", + "kind": "enum_value", + "name": "ForceRedirect", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "32768" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.Godlike", + "kind": "enum_value", + "name": "Godlike", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.IsFlying", + "kind": "enum_value", + "name": "IsFlying", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "8192" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.NineOneOne", + "kind": "enum_value", + "name": "NineOneOne", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ResetHome", + "kind": "enum_value", + "name": "ResetHome", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "16384" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.SetHomeToTarget", + "kind": "enum_value", + "name": "SetHomeToTarget", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.SetLastToTarget", + "kind": "enum_value", + "name": "SetLastToTarget", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaGodlikeLure", + "kind": "enum_value", + "name": "ViaGodlikeLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaHome", + "kind": "enum_value", + "name": "ViaHome", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaLandmark", + "kind": "enum_value", + "name": "ViaLandmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaLocation", + "kind": "enum_value", + "name": "ViaLocation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaLogin", + "kind": "enum_value", + "name": "ViaLogin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaLure", + "kind": "enum_value", + "name": "ViaLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaRegionID", + "kind": "enum_value", + "name": "ViaRegionID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportFlags.ViaTelehub", + "kind": "enum_value", + "name": "ViaTelehub", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TeleportLureFlags", + "namespace": "LibreMetaverse", + "name": "TeleportLureFlags", + "signature": "LibreMetaverse.TeleportLureFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.TeleportLureFlags.GodlikeLure", + "kind": "enum_value", + "name": "GodlikeLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportLureFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportLureFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportLureFlags.GodlikePursuit", + "kind": "enum_value", + "name": "GodlikePursuit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportLureFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportLureFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportLureFlags.NormalLure", + "kind": "enum_value", + "name": "NormalLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportLureFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportLureFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TeleportStatus", + "namespace": "LibreMetaverse", + "name": "TeleportStatus", + "signature": "LibreMetaverse.TeleportStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TeleportStatus.Cancelled", + "kind": "enum_value", + "name": "Cancelled", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportStatus", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportStatus.Failed", + "kind": "enum_value", + "name": "Failed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportStatus", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportStatus.Finished", + "kind": "enum_value", + "name": "Finished", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportStatus", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportStatus.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportStatus", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportStatus.Progress", + "kind": "enum_value", + "name": "Progress", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportStatus", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TeleportStatus.Start", + "kind": "enum_value", + "name": "Start", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TeleportStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TeleportStatus", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerraformAction", + "namespace": "LibreMetaverse", + "name": "TerraformAction", + "signature": "LibreMetaverse.TerraformAction", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerraformAction.Level", + "kind": "enum_value", + "name": "Level", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformAction", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformAction.Lower", + "kind": "enum_value", + "name": "Lower", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformAction", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformAction.Noise", + "kind": "enum_value", + "name": "Noise", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformAction", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformAction.Raise", + "kind": "enum_value", + "name": "Raise", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformAction", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformAction.Revert", + "kind": "enum_value", + "name": "Revert", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformAction", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformAction.Smooth", + "kind": "enum_value", + "name": "Smooth", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformAction", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerraformBrushSize", + "namespace": "LibreMetaverse", + "name": "TerraformBrushSize", + "signature": "LibreMetaverse.TerraformBrushSize", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerraformBrushSize.Large", + "kind": "enum_value", + "name": "Large", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformBrushSize", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformBrushSize", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformBrushSize.Medium", + "kind": "enum_value", + "name": "Medium", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformBrushSize", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformBrushSize", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerraformBrushSize.Small", + "kind": "enum_value", + "name": "Small", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerraformBrushSize", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerraformBrushSize", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerrainCompressor", + "namespace": "LibreMetaverse", + "name": "TerrainCompressor", + "signature": "LibreMetaverse.TerrainCompressor", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerrainCompressor.END_OF_PATCHES", + "kind": "constant", + "name": "END_OF_PATCHES", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "97" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainCompressor.PATCHES_PER_EDGE", + "kind": "constant", + "name": "PATCHES_PER_EDGE", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "16" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[0:,0:],System.Int32,System.Int32)", + "kind": "method", + "name": "CreateLandPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.LayerDataPacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "patchData", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32,System.Int32)", + "kind": "method", + "name": "CreateLandPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.LayerDataPacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "patchData", + "type": "System.Single[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32[])", + "kind": "method", + "name": "CreateLandPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.LayerDataPacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "heightmap", + "type": "System.Single[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "patches", + "type": "System.Int32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLayerDataPacket(LibreMetaverse.TerrainPatch[],LibreMetaverse.TerrainPatch.LayerType)", + "kind": "method", + "name": "CreateLayerDataPacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Packets.LayerDataPacket", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "patches", + "type": "LibreMetaverse.TerrainPatch[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32)", + "kind": "method", + "name": "CreatePatch", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "output", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "patchData", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32,System.Boolean)", + "kind": "method", + "name": "CreatePatch", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "output", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "patchData", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "largeRegion", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32)", + "kind": "method", + "name": "CreatePatchFromHeightmap", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "output", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "heightmap", + "type": "System.Single[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32,System.Boolean)", + "kind": "method", + "name": "CreatePatchFromHeightmap", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "output", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "heightmap", + "type": "System.Single[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "largeRegion", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatch(System.Int32[],LibreMetaverse.BitPack,LibreMetaverse.TerrainPatch.Header,System.Int32)", + "kind": "method", + "name": "DecodePatch", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "patches", + "type": "System.Int32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bitpack", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "header", + "type": "LibreMetaverse.TerrainPatch.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "size", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatchHeader(LibreMetaverse.BitPack)", + "kind": "method", + "name": "DecodePatchHeader", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.Header", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bitpack", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatchHeader(LibreMetaverse.BitPack,System.Boolean)", + "kind": "method", + "name": "DecodePatchHeader", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.Header", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bitpack", + "type": "LibreMetaverse.BitPack", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "largeRegion", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainCompressor.DecompressPatch(System.Int32[],LibreMetaverse.TerrainPatch.Header,LibreMetaverse.TerrainPatch.GroupHeader)", + "kind": "method", + "name": "DecompressPatch", + "static": true, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "patches", + "type": "System.Int32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "header", + "type": "LibreMetaverse.TerrainPatch.Header", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "group", + "type": "LibreMetaverse.TerrainPatch.GroupHeader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerrainManager", + "namespace": "LibreMetaverse", + "name": "TerrainManager", + "signature": "LibreMetaverse.TerrainManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.TerrainManager.LandPatchReceived", + "kind": "event", + "name": "LandPatchReceived", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.LandPatchReceivedEventArgs\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainManager.TerrainMaterialSlotCount", + "kind": "constant", + "name": "TerrainMaterialSlotCount", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "4" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "TerrainManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainManager.GetTerrainMaterialOverridesAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "GetTerrainMaterialOverridesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetMaterial[]\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "element": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.TerrainManager.\u003CGetTerrainMaterialOverridesAsync\u003Ed__13" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.TerrainManager.SetTerrainMaterialOverridesAsync(LibreMetaverse.Assets.AssetMaterial[],System.Threading.CancellationToken)", + "kind": "method", + "name": "SetTerrainMaterialOverridesAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "overrides", + "type": "LibreMetaverse.Assets.AssetMaterial[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.TerrainManager.\u003CSetTerrainMaterialOverridesAsync\u003Ed__14" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerrainPatch", + "namespace": "LibreMetaverse", + "name": "TerrainPatch", + "signature": "LibreMetaverse.TerrainPatch", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Single[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainPatch.#ctor", + "kind": "constructor", + "name": "TerrainPatch", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerrainPatch.GroupHeader", + "namespace": "LibreMetaverse", + "name": "GroupHeader", + "signature": "LibreMetaverse.TerrainPatch.GroupHeader", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerrainPatch.GroupHeader.PatchSize", + "kind": "field", + "name": "PatchSize", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.GroupHeader.Stride", + "kind": "field", + "name": "Stride", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.GroupHeader.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerrainPatch.Header", + "namespace": "LibreMetaverse", + "name": "Header", + "signature": "LibreMetaverse.TerrainPatch.Header", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Header.DCOffset", + "kind": "field", + "name": "DCOffset", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Header.PatchIDs", + "kind": "field", + "name": "PatchIDs", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Header.QuantWBits", + "kind": "field", + "name": "QuantWBits", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Header.Range", + "kind": "field", + "name": "Range", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.Header.WordBits", + "kind": "field", + "name": "WordBits", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TerrainPatch.Header.setPatchIDs(System.Int32,System.Int32)", + "kind": "method", + "name": "setPatchIDs", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xx", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yy", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerrainPatch.Header.LargeRegion", + "kind": "property", + "name": "LargeRegion", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerrainPatch.Header.X", + "kind": "property", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerrainPatch.Header.Y", + "kind": "property", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerrainPatch.LayerType", + "namespace": "LibreMetaverse", + "name": "LayerType", + "signature": "LibreMetaverse.TerrainPatch.LayerType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.Cloud", + "kind": "enum_value", + "name": "Cloud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "56" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.CloudExtended", + "kind": "enum_value", + "name": "CloudExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "58" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.Land", + "kind": "enum_value", + "name": "Land", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "76" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.LandExtended", + "kind": "enum_value", + "name": "LandExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "77" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.Water", + "kind": "enum_value", + "name": "Water", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "87" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.WaterExtended", + "kind": "enum_value", + "name": "WaterExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "87" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.Wind", + "kind": "enum_value", + "name": "Wind", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "55" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TerrainPatch.LayerType.WindExtended", + "kind": "enum_value", + "name": "WindExtended", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TerrainPatch.LayerType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TerrainPatch.LayerType", + "value": "57" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TerseObjectUpdateEventArgs", + "namespace": "LibreMetaverse", + "name": "TerseObjectUpdateEventArgs", + "signature": "LibreMetaverse.TerseObjectUpdateEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TerseObjectUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,LibreMetaverse.ObjectMovementUpdate,System.UInt16)", + "kind": "constructor", + "name": "TerseObjectUpdateEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "update", + "type": "LibreMetaverse.ObjectMovementUpdate", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeDilation", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerseObjectUpdateEventArgs.Prim", + "kind": "property", + "name": "Prim", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Primitive", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerseObjectUpdateEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerseObjectUpdateEventArgs.TimeDilation", + "kind": "property", + "name": "TimeDilation", + "static": false, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TerseObjectUpdateEventArgs.Update", + "kind": "property", + "name": "Update", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.ObjectMovementUpdate", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TextureAttributes", + "namespace": "LibreMetaverse", + "name": "TextureAttributes", + "signature": "LibreMetaverse.TextureAttributes", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.TextureAttributes.All", + "kind": "enum_value", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "4294967295" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.Glow", + "kind": "enum_value", + "name": "Glow", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.Material", + "kind": "enum_value", + "name": "Material", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.MaterialID", + "kind": "enum_value", + "name": "MaterialID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.Media", + "kind": "enum_value", + "name": "Media", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.OffsetU", + "kind": "enum_value", + "name": "OffsetU", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.OffsetV", + "kind": "enum_value", + "name": "OffsetV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.RGBA", + "kind": "enum_value", + "name": "RGBA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.RenderMaterialID", + "kind": "enum_value", + "name": "RenderMaterialID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.RepeatU", + "kind": "enum_value", + "name": "RepeatU", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.RepeatV", + "kind": "enum_value", + "name": "RepeatV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.Rotation", + "kind": "enum_value", + "name": "Rotation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureAttributes.TextureID", + "kind": "enum_value", + "name": "TextureID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureAttributes", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureAttributes", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TexturePipeline", + "namespace": "LibreMetaverse", + "name": "TexturePipeline", + "signature": "LibreMetaverse.TexturePipeline", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TexturePipeline.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "TexturePipeline", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TexturePipeline.AbortTextureRequest(LibreMetaverse.UUID)", + "kind": "method", + "name": "AbortTextureRequest", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "textureID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TexturePipeline.Shutdown", + "kind": "method", + "name": "Shutdown", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TexturePipeline.Startup", + "kind": "method", + "name": "Startup", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TexturePipeline.TransferCount", + "kind": "property", + "name": "TransferCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TexturePipelineSettings", + "namespace": "LibreMetaverse", + "name": "TexturePipelineSettings", + "signature": "LibreMetaverse.TexturePipelineSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TexturePipelineSettings.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TexturePipelineSettings.MaxConcurrentDownloads", + "kind": "field", + "name": "MaxConcurrentDownloads", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TexturePipelineSettings.RequestTimeout", + "kind": "field", + "name": "RequestTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TexturePipelineSettings.UseHttpTextures", + "kind": "field", + "name": "UseHttpTextures", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TexturePipelineSettings.#ctor", + "kind": "constructor", + "name": "TexturePipelineSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TextureRequestState", + "namespace": "LibreMetaverse", + "name": "TextureRequestState", + "signature": "LibreMetaverse.TextureRequestState", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TextureRequestState.Aborted", + "kind": "enum_value", + "name": "Aborted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureRequestState.Finished", + "kind": "enum_value", + "name": "Finished", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureRequestState.NotFound", + "kind": "enum_value", + "name": "NotFound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureRequestState.Pending", + "kind": "enum_value", + "name": "Pending", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureRequestState.Progress", + "kind": "enum_value", + "name": "Progress", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureRequestState.Started", + "kind": "enum_value", + "name": "Started", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TextureRequestState.Timeout", + "kind": "enum_value", + "name": "Timeout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TextureRequestState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TextureRequestState", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.IAdvancedDisposable", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "IAdvancedDisposable", + "signature": "LibreMetaverse.Threading.Disposers.IAdvancedDisposable", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "P:LibreMetaverse.Threading.Disposers.IAdvancedDisposable.WasDisposed", + "kind": "property", + "name": "WasDisposed", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.IUpgradeableLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "IUpgradeableLock", + "signature": "LibreMetaverse.Threading.Disposers.IUpgradeableLock", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.IUpgradeableLock.DisposableUpgrade", + "kind": "method", + "name": "DisposableUpgrade", + "static": false, + "visibility": "public", + "type": "System.IDisposable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.IUpgradeableLock.Upgrade", + "kind": "method", + "name": "Upgrade", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticReadLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "OptimisticReadLock", + "signature": "LibreMetaverse.Threading.Disposers.OptimisticReadLock", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticReadLock.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "OptimisticUpgradeableLock", + "signature": "LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "LibreMetaverse.Threading.Disposers.IUpgradeableLock", + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock.DisposableUpgrade", + "kind": "method", + "name": "DisposableUpgrade", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.OptimisticWriteLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock.Upgrade", + "kind": "method", + "name": "Upgrade", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticWriteLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "OptimisticWriteLock", + "signature": "LibreMetaverse.Threading.Disposers.OptimisticWriteLock", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticWriteLock.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.SpinReadLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "SpinReadLock", + "signature": "LibreMetaverse.Threading.Disposers.SpinReadLock", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.SpinReadLock.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "SpinUpgradeableLock", + "signature": "LibreMetaverse.Threading.Disposers.SpinUpgradeableLock", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "LibreMetaverse.Threading.Disposers.IUpgradeableLock", + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock.DisposableUpgrade", + "kind": "method", + "name": "DisposableUpgrade", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.SpinWriteLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock.Upgrade", + "kind": "method", + "name": "Upgrade", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.Disposers.SpinWriteLock", + "namespace": "LibreMetaverse.Threading.Disposers", + "name": "SpinWriteLock", + "signature": "LibreMetaverse.Threading.Disposers.SpinWriteLock", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.Disposers.SpinWriteLock.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.IEventWait", + "namespace": "LibreMetaverse.Threading", + "name": "IEventWait", + "signature": "LibreMetaverse.Threading.IEventWait", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [ + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.IEventWait.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IEventWait.Set", + "kind": "method", + "name": "Set", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne(System.Int32)", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "millisecondsTimeout", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne(System.TimeSpan)", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.IReaderWriterLock", + "namespace": "LibreMetaverse.Threading", + "name": "IReaderWriterLock", + "signature": "LibreMetaverse.Threading.IReaderWriterLock", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLock.ReadLock", + "kind": "method", + "name": "ReadLock", + "static": false, + "visibility": "public", + "type": "System.IDisposable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLock.UpgradeableLock", + "kind": "method", + "name": "UpgradeableLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.IUpgradeableLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLock.WriteLock", + "kind": "method", + "name": "WriteLock", + "static": false, + "visibility": "public", + "type": "System.IDisposable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.IReaderWriterLockSlim", + "namespace": "LibreMetaverse.Threading", + "name": "IReaderWriterLockSlim", + "signature": "LibreMetaverse.Threading.IReaderWriterLockSlim", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.EnterReadLock", + "kind": "method", + "name": "EnterReadLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.EnterUpgradeableLock", + "kind": "method", + "name": "EnterUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.EnterWriteLock", + "kind": "method", + "name": "EnterWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitReadLock", + "kind": "method", + "name": "ExitReadLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitUpgradeableLock(System.Boolean)", + "kind": "method", + "name": "ExitUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upgraded", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitWriteLock", + "kind": "method", + "name": "ExitWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UncheckedExitUpgradeableLock", + "kind": "method", + "name": "UncheckedExitUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UncheckedExitUpgradedLock", + "kind": "method", + "name": "UncheckedExitUpgradedLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UncheckedUpgradeToWriteLock", + "kind": "method", + "name": "UncheckedUpgradeToWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UpgradeToWriteLock(System.Boolean@)", + "kind": "method", + "name": "UpgradeToWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upgraded", + "type": "System.Boolean\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.ManagedAutoResetEvent", + "namespace": "LibreMetaverse.Threading", + "name": "ManagedAutoResetEvent", + "signature": "LibreMetaverse.Threading.ManagedAutoResetEvent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Threading.Disposers.IAdvancedDisposable", + "LibreMetaverse.Threading.IEventWait", + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.#ctor", + "kind": "constructor", + "name": "ManagedAutoResetEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.#ctor(System.Boolean)", + "kind": "constructor", + "name": "ManagedAutoResetEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "initialState", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.Set", + "kind": "method", + "name": "Set", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne(System.Int32)", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "millisecondsTimeout", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne(System.TimeSpan)", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Threading.ManagedAutoResetEvent.IsSet", + "kind": "property", + "name": "IsSet", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Threading.ManagedAutoResetEvent.WasDisposed", + "kind": "property", + "name": "WasDisposed", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.ManagedManualResetEvent", + "namespace": "LibreMetaverse.Threading", + "name": "ManagedManualResetEvent", + "signature": "LibreMetaverse.Threading.ManagedManualResetEvent", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Threading.Disposers.IAdvancedDisposable", + "LibreMetaverse.Threading.IEventWait", + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.#ctor", + "kind": "constructor", + "name": "ManagedManualResetEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.#ctor(System.Boolean)", + "kind": "constructor", + "name": "ManagedManualResetEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "initialState", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.Set", + "kind": "method", + "name": "Set", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne(System.Int32)", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "millisecondsTimeout", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne(System.TimeSpan)", + "kind": "method", + "name": "WaitOne", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Threading.ManagedManualResetEvent.IsSet", + "kind": "property", + "name": "IsSet", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Threading.ManagedManualResetEvent.WasDisposed", + "kind": "property", + "name": "WasDisposed", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.ManagedSemaphore", + "namespace": "LibreMetaverse.Threading", + "name": "ManagedSemaphore", + "signature": "LibreMetaverse.Threading.ManagedSemaphore", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Threading.Disposers.IAdvancedDisposable", + "System.IDisposable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.#ctor(System.Int32)", + "kind": "constructor", + "name": "ManagedSemaphore", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "availableCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Enter", + "kind": "method", + "name": "Enter", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Enter(System.Int32)", + "kind": "method", + "name": "Enter", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Exit", + "kind": "method", + "name": "Exit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Exit(System.Int32)", + "kind": "method", + "name": "Exit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Threading.ManagedSemaphore.WasDisposed", + "kind": "property", + "name": "WasDisposed", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.OptimisticReaderWriterLock", + "namespace": "LibreMetaverse.Threading", + "name": "OptimisticReaderWriterLock", + "signature": "LibreMetaverse.Threading.OptimisticReaderWriterLock", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Threading.IReaderWriterLock", + "LibreMetaverse.Threading.IReaderWriterLockSlim" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.#ctor", + "kind": "constructor", + "name": "OptimisticReaderWriterLock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.EnterReadLock", + "kind": "method", + "name": "EnterReadLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.EnterUpgradeableLock", + "kind": "method", + "name": "EnterUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.EnterWriteLock", + "kind": "method", + "name": "EnterWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitReadLock", + "kind": "method", + "name": "ExitReadLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitUpgradeableLock(System.Boolean)", + "kind": "method", + "name": "ExitUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upgraded", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitWriteLock", + "kind": "method", + "name": "ExitWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ReadLock", + "kind": "method", + "name": "ReadLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.OptimisticReadLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UncheckedExitUpgradeableLock", + "kind": "method", + "name": "UncheckedExitUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UncheckedExitUpgradedLock", + "kind": "method", + "name": "UncheckedExitUpgradedLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UncheckedUpgradeToWriteLock", + "kind": "method", + "name": "UncheckedUpgradeToWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UpgradeToWriteLock(System.Boolean@)", + "kind": "method", + "name": "UpgradeToWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upgraded", + "type": "System.Boolean\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UpgradeableLock", + "kind": "method", + "name": "UpgradeableLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.WriteLock", + "kind": "method", + "name": "WriteLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.OptimisticWriteLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.SpinLockSlim", + "namespace": "LibreMetaverse.Threading", + "name": "SpinLockSlim", + "signature": "LibreMetaverse.Threading.SpinLockSlim", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.SpinLockSlim.Enter", + "kind": "method", + "name": "Enter", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinLockSlim.Exit", + "kind": "method", + "name": "Exit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.SpinReaderWriterLock", + "namespace": "LibreMetaverse.Threading", + "name": "SpinReaderWriterLock", + "signature": "LibreMetaverse.Threading.SpinReaderWriterLock", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Threading.IReaderWriterLock" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLock.#ctor", + "kind": "constructor", + "name": "SpinReaderWriterLock", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLock.ReadLock", + "kind": "method", + "name": "ReadLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.SpinReadLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLock.UpgradeableLock", + "kind": "method", + "name": "UpgradeableLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.SpinUpgradeableLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLock.WriteLock", + "kind": "method", + "name": "WriteLock", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Threading.Disposers.SpinWriteLock", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.SpinReaderWriterLockSlim", + "namespace": "LibreMetaverse.Threading", + "name": "SpinReaderWriterLockSlim", + "signature": "LibreMetaverse.Threading.SpinReaderWriterLockSlim", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "LibreMetaverse.Threading.IReaderWriterLockSlim" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.EnterReadLock", + "kind": "method", + "name": "EnterReadLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.EnterUpgradeableLock", + "kind": "method", + "name": "EnterUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.EnterWriteLock", + "kind": "method", + "name": "EnterWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitReadLock", + "kind": "method", + "name": "ExitReadLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitUpgradeableLock(System.Boolean)", + "kind": "method", + "name": "ExitUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upgraded", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitWriteLock", + "kind": "method", + "name": "ExitWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UncheckedExitUpgradeableLock", + "kind": "method", + "name": "UncheckedExitUpgradeableLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UncheckedExitUpgradedLock", + "kind": "method", + "name": "UncheckedExitUpgradedLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UncheckedUpgradeToWriteLock", + "kind": "method", + "name": "UncheckedUpgradeToWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UpgradeToWriteLock(System.Boolean@)", + "kind": "method", + "name": "UpgradeToWriteLock", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "upgraded", + "type": "System.Boolean\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Threading.WaitHandleAsyncFactory", + "namespace": "LibreMetaverse.Threading", + "name": "WaitHandleAsyncFactory", + "signature": "LibreMetaverse.Threading.WaitHandleAsyncFactory", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle)", + "kind": "method", + "name": "FromWaitHandle", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.Threading.WaitHandle", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.Threading.CancellationToken)", + "kind": "method", + "name": "FromWaitHandle", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.Threading.WaitHandle", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "token", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan)", + "kind": "method", + "name": "FromWaitHandle", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.Threading.WaitHandle", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan,System.Threading.CancellationToken)", + "kind": "method", + "name": "FromWaitHandle", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.Threading.WaitHandle", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timeout", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "token", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TimingSettings", + "namespace": "LibreMetaverse", + "name": "TimingSettings", + "signature": "LibreMetaverse.TimingSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TimingSettings.AgentUpdateInterval", + "kind": "field", + "name": "AgentUpdateInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.CapsTimeout", + "kind": "field", + "name": "CapsTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.InterpolationInterval", + "kind": "field", + "name": "InterpolationInterval", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.LoginTimeout", + "kind": "field", + "name": "LoginTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.LogoutTimeout", + "kind": "field", + "name": "LogoutTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.MapRequestTimeout", + "kind": "field", + "name": "MapRequestTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.ResendTimeout", + "kind": "field", + "name": "ResendTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.SimulatorTimeout", + "kind": "field", + "name": "SimulatorTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.TeleportTimeout", + "kind": "field", + "name": "TeleportTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TimingSettings.TransferTimeout", + "kind": "field", + "name": "TransferTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TimingSettings.#ctor", + "kind": "constructor", + "name": "TimingSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TopCollidersReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "TopCollidersReplyEventArgs", + "signature": "LibreMetaverse.TopCollidersReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TopCollidersReplyEventArgs.#ctor(System.Int32,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.EstateTask})", + "kind": "constructor", + "name": "TopCollidersReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tasks", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TopCollidersReplyEventArgs.ObjectCount", + "kind": "property", + "name": "ObjectCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TopCollidersReplyEventArgs.Tasks", + "kind": "property", + "name": "Tasks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TopScriptsReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "TopScriptsReplyEventArgs", + "signature": "LibreMetaverse.TopScriptsReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TopScriptsReplyEventArgs.#ctor(System.Int32,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.EstateTask})", + "kind": "constructor", + "name": "TopScriptsReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectCount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tasks", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TopScriptsReplyEventArgs.ObjectCount", + "kind": "property", + "name": "ObjectCount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TopScriptsReplyEventArgs.Tasks", + "kind": "property", + "name": "Tasks", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TransactionFlags", + "namespace": "LibreMetaverse", + "name": "TransactionFlags", + "signature": "LibreMetaverse.TransactionFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.TransactionFlags.ContributionRemoval", + "kind": "enum_value", + "name": "ContributionRemoval", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransactionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransactionFlags", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionFlags.DestGroup", + "kind": "enum_value", + "name": "DestGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransactionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransactionFlags", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransactionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransactionFlags", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionFlags.OwnerGroup", + "kind": "enum_value", + "name": "OwnerGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransactionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransactionFlags", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionFlags.SimultaneousContribution", + "kind": "enum_value", + "name": "SimultaneousContribution", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransactionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransactionFlags", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionFlags.SourceGroup", + "kind": "enum_value", + "name": "SourceGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransactionFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransactionFlags", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TransactionInfo", + "namespace": "LibreMetaverse", + "name": "TransactionInfo", + "signature": "LibreMetaverse.TransactionInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TransactionInfo.Amount", + "kind": "field", + "name": "Amount", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionInfo.DestID", + "kind": "field", + "name": "DestID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionInfo.IsDestGroup", + "kind": "field", + "name": "IsDestGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionInfo.IsSourceGroup", + "kind": "field", + "name": "IsSourceGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionInfo.ItemDescription", + "kind": "field", + "name": "ItemDescription", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.TransactionInfo.SourceID", + "kind": "field", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransactionInfo.TransactionType", + "kind": "field", + "name": "TransactionType", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TransactionInfo.#ctor", + "kind": "constructor", + "name": "TransactionInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Transfer", + "namespace": "LibreMetaverse", + "name": "Transfer", + "signature": "LibreMetaverse.Transfer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Transfer.AssetData", + "kind": "field", + "name": "AssetData", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Transfer.AssetType", + "kind": "field", + "name": "AssetType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Transfer.ID", + "kind": "field", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Transfer.Size", + "kind": "field", + "name": "Size", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Transfer.Success", + "kind": "field", + "name": "Success", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Transfer.Transferred", + "kind": "field", + "name": "Transferred", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Transfer.#ctor", + "kind": "constructor", + "name": "Transfer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Transfer.TimeSinceLastPacket", + "kind": "property", + "name": "TimeSinceLastPacket", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "internal", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "internal", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TransferError", + "namespace": "LibreMetaverse", + "name": "TransferError", + "signature": "LibreMetaverse.TransferError", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TransferError.AssetNotFound", + "kind": "enum_value", + "name": "AssetNotFound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.AssetNotFoundInDatabase", + "kind": "enum_value", + "name": "AssetNotFoundInDatabase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.CannotOpenFile", + "kind": "enum_value", + "name": "CannotOpenFile", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.CircuitGone", + "kind": "enum_value", + "name": "CircuitGone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-23017" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.EOF", + "kind": "enum_value", + "name": "EOF", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.Failed", + "kind": "enum_value", + "name": "Failed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.FileIsEmpty", + "kind": "enum_value", + "name": "FileIsEmpty", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.FileNotFound", + "kind": "enum_value", + "name": "FileNotFound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.InsufficientPermissions", + "kind": "enum_value", + "name": "InsufficientPermissions", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.TransferError.TCPTimeout", + "kind": "enum_value", + "name": "TCPTimeout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.TransferError", + "value": "-23016" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Tree", + "namespace": "LibreMetaverse", + "name": "Tree", + "signature": "LibreMetaverse.Tree", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Tree.BeachGrass1", + "kind": "enum_value", + "name": "BeachGrass1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "19" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Cypress1", + "kind": "enum_value", + "name": "Cypress1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Cypress2", + "kind": "enum_value", + "name": "Cypress2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Dogwood", + "kind": "enum_value", + "name": "Dogwood", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Eelgrass", + "kind": "enum_value", + "name": "Eelgrass", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Eucalyptus", + "kind": "enum_value", + "name": "Eucalyptus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "14" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Fern", + "kind": "enum_value", + "name": "Fern", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "15" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Kelp1", + "kind": "enum_value", + "name": "Kelp1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "18" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Kelp2", + "kind": "enum_value", + "name": "Kelp2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "20" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Oak", + "kind": "enum_value", + "name": "Oak", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Palm1", + "kind": "enum_value", + "name": "Palm1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Palm2", + "kind": "enum_value", + "name": "Palm2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Pine1", + "kind": "enum_value", + "name": "Pine1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Pine2", + "kind": "enum_value", + "name": "Pine2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.Plumeria", + "kind": "enum_value", + "name": "Plumeria", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.SeaSword", + "kind": "enum_value", + "name": "SeaSword", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "17" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.TropicalBush1", + "kind": "enum_value", + "name": "TropicalBush1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.TropicalBush2", + "kind": "enum_value", + "name": "TropicalBush2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.WinterAspen", + "kind": "enum_value", + "name": "WinterAspen", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "12" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.WinterPine1", + "kind": "enum_value", + "name": "WinterPine1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "11" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Tree.WinterPine2", + "kind": "enum_value", + "name": "WinterPine2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Tree", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Tree", + "value": "13" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TreeDefinition", + "namespace": "LibreMetaverse", + "name": "TreeDefinition", + "signature": "LibreMetaverse.TreeDefinition", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.TreeDefinition.BillboardRatio", + "kind": "property", + "name": "BillboardRatio", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.BillboardScale", + "kind": "property", + "name": "BillboardScale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.BranchAspect", + "kind": "property", + "name": "BranchAspect", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.BranchLength", + "kind": "property", + "name": "BranchLength", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.Branches", + "kind": "property", + "name": "Branches", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.Depth", + "kind": "property", + "name": "Depth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.Droop", + "kind": "property", + "name": "Droop", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.LeafRotate", + "kind": "property", + "name": "LeafRotate", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.LeafScale", + "kind": "property", + "name": "LeafScale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.NoiseMag", + "kind": "property", + "name": "NoiseMag", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.NoiseScale", + "kind": "property", + "name": "NoiseScale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.RepeatZ", + "kind": "property", + "name": "RepeatZ", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.ScaleStep", + "kind": "property", + "name": "ScaleStep", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.SpeciesId", + "kind": "property", + "name": "SpeciesId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.Taper", + "kind": "property", + "name": "Taper", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.TextureId", + "kind": "property", + "name": "TextureId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.TrunkAspect", + "kind": "property", + "name": "TrunkAspect", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.TrunkDepth", + "kind": "property", + "name": "TrunkDepth", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.TrunkLength", + "kind": "property", + "name": "TrunkLength", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TreeDefinition.Twist", + "kind": "property", + "name": "Twist", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TreeDefinitions", + "namespace": "LibreMetaverse", + "name": "TreeDefinitions", + "signature": "LibreMetaverse.TreeDefinitions", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.TreeDefinitions.All", + "kind": "field", + "name": "All", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TreeDefinition[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TreeDefinitions.Get(LibreMetaverse.Tree)", + "kind": "method", + "name": "Get", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.TreeDefinition\u0026", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "species", + "type": "LibreMetaverse.Tree", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.UDPBase", + "namespace": "LibreMetaverse", + "name": "UDPBase", + "signature": "LibreMetaverse.UDPBase", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.UDPBase.AsyncBeginSend(LibreMetaverse.UDPPacketBuffer)", + "kind": "method", + "name": "AsyncBeginSend", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "buf", + "type": "LibreMetaverse.UDPPacketBuffer", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPBase.Start", + "kind": "method", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPBase.Stop", + "kind": "method", + "name": "Stop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.UDPBase.IsRunning", + "kind": "property", + "name": "IsRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.UDPPacketBuffer", + "namespace": "LibreMetaverse", + "name": "UDPPacketBuffer", + "signature": "LibreMetaverse.UDPPacketBuffer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.UDPPacketBuffer.DEFAULT_BUFFER_SIZE", + "kind": "constant", + "name": "DEFAULT_BUFFER_SIZE", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "4096" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UDPPacketBuffer.Data", + "kind": "field", + "name": "Data", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UDPPacketBuffer.DataLength", + "kind": "field", + "name": "DataLength", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UDPPacketBuffer.RemoteEndPoint", + "kind": "field", + "name": "RemoteEndPoint", + "static": false, + "visibility": "public", + "type": "System.Net.EndPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor", + "kind": "constructor", + "name": "UDPPacketBuffer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Byte[],System.Int32,System.Net.IPEndPoint,System.Int32)", + "kind": "constructor", + "name": "UDPPacketBuffer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "buffer", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bufferSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "destination", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "category", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint)", + "kind": "constructor", + "name": "UDPPacketBuffer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint,System.Byte[])", + "kind": "constructor", + "name": "UDPPacketBuffer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint,System.Int32)", + "kind": "constructor", + "name": "UDPPacketBuffer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "endPoint", + "type": "System.Net.IPEndPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bufferSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array)", + "kind": "method", + "name": "CopyFrom", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "src", + "type": "System.Array", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array,System.Int32)", + "kind": "method", + "name": "CopyFrom", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "src", + "type": "System.Array", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "length", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UDPPacketBuffer.ResetEndpoint", + "kind": "method", + "name": "ResetEndpoint", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.UUIDNameReplyEventArgs", + "namespace": "LibreMetaverse", + "name": "UUIDNameReplyEventArgs", + "signature": "LibreMetaverse.UUIDNameReplyEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.UUIDNameReplyEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "kind": "constructor", + "name": "UUIDNameReplyEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "names", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.UUIDNameReplyEventArgs.Names", + "kind": "property", + "name": "Names", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.UpdateType", + "namespace": "LibreMetaverse", + "name": "UpdateType", + "signature": "LibreMetaverse.UpdateType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.UpdateType.Linked", + "kind": "enum_value", + "name": "Linked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UpdateType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.UpdateType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UpdateType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UpdateType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.UpdateType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UpdateType.Position", + "kind": "enum_value", + "name": "Position", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UpdateType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.UpdateType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UpdateType.Rotation", + "kind": "enum_value", + "name": "Rotation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UpdateType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.UpdateType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UpdateType.Scale", + "kind": "enum_value", + "name": "Scale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UpdateType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.UpdateType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.UpdateType.Uniform", + "kind": "enum_value", + "name": "Uniform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UpdateType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.UpdateType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ViewerBenefitsEventArgs", + "namespace": "LibreMetaverse", + "name": "ViewerBenefitsEventArgs", + "signature": "LibreMetaverse.ViewerBenefitsEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ViewerBenefitsEventArgs.#ctor(LibreMetaverse.Messages.Linden.ViewerBenefitsMessage)", + "kind": "constructor", + "name": "ViewerBenefitsEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "benefits", + "type": "LibreMetaverse.Messages.Linden.ViewerBenefitsMessage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerBenefitsEventArgs.Benefits", + "kind": "property", + "name": "Benefits", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Messages.Linden.ViewerBenefitsMessage", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ViewerEffectEventArgs", + "namespace": "LibreMetaverse", + "name": "ViewerEffectEventArgs", + "signature": "LibreMetaverse.ViewerEffectEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ViewerEffectEventArgs.#ctor(LibreMetaverse.EffectType,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,System.Single,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "ViewerEffectEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.EffectType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sourceID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "duration", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.Duration", + "kind": "property", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.EffectID", + "kind": "property", + "name": "EffectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.SourceID", + "kind": "property", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.TargetID", + "kind": "property", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.TargetPosition", + "kind": "property", + "name": "TargetPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.EffectType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ViewerEffectLookAtEventArgs", + "namespace": "LibreMetaverse", + "name": "ViewerEffectLookAtEventArgs", + "signature": "LibreMetaverse.ViewerEffectLookAtEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.ViewerEffectLookAtEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.LookAtType,System.Single,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "ViewerEffectLookAtEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sourceID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lookType", + "type": "LibreMetaverse.LookAtType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "duration", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.Duration", + "kind": "property", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.EffectID", + "kind": "property", + "name": "EffectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.LookType", + "kind": "property", + "name": "LookType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LookAtType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.SourceID", + "kind": "property", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.TargetID", + "kind": "property", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.TargetPosition", + "kind": "property", + "name": "TargetPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ViewerEffectPointAtEventArgs", + "namespace": "LibreMetaverse", + "name": "ViewerEffectPointAtEventArgs", + "signature": "LibreMetaverse.ViewerEffectPointAtEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ViewerEffectPointAtEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.PointAtType,System.Single,LibreMetaverse.UUID)", + "kind": "constructor", + "name": "ViewerEffectPointAtEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "simulator", + "type": "LibreMetaverse.Simulator", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sourceID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetID", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "targetPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pointType", + "type": "LibreMetaverse.PointAtType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "duration", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.Duration", + "kind": "property", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.EffectID", + "kind": "property", + "name": "EffectID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.PointType", + "kind": "property", + "name": "PointType", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PointAtType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.Simulator", + "kind": "property", + "name": "Simulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.SourceID", + "kind": "property", + "name": "SourceID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.TargetID", + "kind": "property", + "name": "TargetID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.TargetPosition", + "kind": "property", + "name": "TargetPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ViewerUriType", + "namespace": "LibreMetaverse", + "name": "ViewerUriType", + "signature": "LibreMetaverse.ViewerUriType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ViewerUriType.Application", + "kind": "enum_value", + "name": "Application", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ViewerUriType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ViewerUriType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ViewerUriType.Location", + "kind": "enum_value", + "name": "Location", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ViewerUriType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ViewerUriType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ViewerUriType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ViewerUriType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ViewerUriType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.VisualAlphaParam", + "namespace": "LibreMetaverse", + "name": "VisualAlphaParam", + "signature": "LibreMetaverse.VisualAlphaParam", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.VisualAlphaParam.Domain", + "kind": "field", + "name": "Domain", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualAlphaParam.MultiplyBlend", + "kind": "field", + "name": "MultiplyBlend", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualAlphaParam.SkipIfZero", + "kind": "field", + "name": "SkipIfZero", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualAlphaParam.TGAFile", + "kind": "field", + "name": "TGAFile", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.VisualAlphaParam.#ctor(System.Single,System.String,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "VisualAlphaParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "domain", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tgaFile", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "skipIfZero", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "multiplyBlend", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.VisualColorOperation", + "namespace": "LibreMetaverse", + "name": "VisualColorOperation", + "signature": "LibreMetaverse.VisualColorOperation", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.VisualColorOperation.Add", + "kind": "enum_value", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.VisualColorOperation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.VisualColorOperation", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualColorOperation.Blend", + "kind": "enum_value", + "name": "Blend", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.VisualColorOperation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.VisualColorOperation", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualColorOperation.Multiply", + "kind": "enum_value", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.VisualColorOperation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.VisualColorOperation", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.VisualColorParam", + "namespace": "LibreMetaverse", + "name": "VisualColorParam", + "signature": "LibreMetaverse.VisualColorParam", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.VisualColorParam.Colors", + "kind": "field", + "name": "Colors", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualColorParam.Operation", + "kind": "field", + "name": "Operation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.VisualColorOperation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.VisualColorParam.#ctor(LibreMetaverse.VisualColorOperation,LibreMetaverse.Color4[])", + "kind": "constructor", + "name": "VisualColorParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "operation", + "type": "LibreMetaverse.VisualColorOperation", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "colors", + "type": "LibreMetaverse.Color4[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.VisualParam", + "namespace": "LibreMetaverse", + "name": "VisualParam", + "signature": "LibreMetaverse.VisualParam", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.VisualParam.AlphaParams", + "kind": "field", + "name": "AlphaParams", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.VisualAlphaParam\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.ColorParams", + "kind": "field", + "name": "ColorParams", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.VisualColorParam\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.DefaultValue", + "kind": "field", + "name": "DefaultValue", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.DrivenParams", + "kind": "field", + "name": "DrivenParams", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.DrivenParamInfo[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.Drivers", + "kind": "field", + "name": "Drivers", + "static": false, + "visibility": "public", + "type": "System.Int32[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.Group", + "kind": "field", + "name": "Group", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.IsBumpAttribute", + "kind": "field", + "name": "IsBumpAttribute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.Label", + "kind": "field", + "name": "Label", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.LabelMax", + "kind": "field", + "name": "LabelMax", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.LabelMin", + "kind": "field", + "name": "LabelMin", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.MaxValue", + "kind": "field", + "name": "MaxValue", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.MinValue", + "kind": "field", + "name": "MinValue", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.ParamID", + "kind": "field", + "name": "ParamID", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.SkeletalDistortions", + "kind": "field", + "name": "SkeletalDistortions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.SkeletalBoneInfo[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.VolumeMorphs", + "kind": "field", + "name": "VolumeMorphs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.VolumeMorphInfo[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParam.Wearable", + "kind": "field", + "name": "Wearable", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "kind": "constructor", + "name": "VisualParam", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "paramID", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "group", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearable", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "label", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "labelMin", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "labelMax", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "def", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isBumpAttribute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "drivers", + "type": "System.Int32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "alpha", + "type": "System.Nullable\u003CLibreMetaverse.VisualAlphaParam\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "colorParams", + "type": "System.Nullable\u003CLibreMetaverse.VisualColorParam\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "drivenParams", + "type": "LibreMetaverse.DrivenParamInfo[]", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.DrivenParamInfo[]" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "skeletalDistortions", + "type": "LibreMetaverse.SkeletalBoneInfo[]", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.SkeletalBoneInfo[]" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "volumeMorphs", + "type": "LibreMetaverse.VolumeMorphInfo[]", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.VolumeMorphInfo[]" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.VisualParams", + "namespace": "LibreMetaverse", + "name": "VisualParams", + "signature": "LibreMetaverse.VisualParams", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.VisualParams.Group0ParamIds", + "kind": "field", + "name": "Group0ParamIds", + "static": true, + "visibility": "public", + "type": "System.Int32[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VisualParams.Params", + "kind": "field", + "name": "Params", + "static": true, + "visibility": "public", + "type": "System.Collections.Generic.SortedList\u003CSystem.Int32, LibreMetaverse.VisualParam\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.VisualParams.Find(System.String,System.String)", + "kind": "method", + "name": "Find", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.VisualParam", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearable", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.VolumeMorphInfo", + "namespace": "LibreMetaverse", + "name": "VolumeMorphInfo", + "signature": "LibreMetaverse.VolumeMorphInfo", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.VolumeMorphInfo.BoneName", + "kind": "field", + "name": "BoneName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VolumeMorphInfo.HasPosition", + "kind": "field", + "name": "HasPosition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VolumeMorphInfo.HasScale", + "kind": "field", + "name": "HasScale", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VolumeMorphInfo.PositionDelta", + "kind": "field", + "name": "PositionDelta", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.VolumeMorphInfo.ScaleDelta", + "kind": "field", + "name": "ScaleDelta", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.VolumeMorphInfo.#ctor(System.String,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,System.Boolean)", + "kind": "constructor", + "name": "VolumeMorphInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "boneName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleDelta", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hasScale", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "positionDelta", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hasPosition", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Vote", + "namespace": "LibreMetaverse", + "name": "Vote", + "signature": "LibreMetaverse.Vote", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Vote.Candidate", + "kind": "field", + "name": "Candidate", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vote.NumVotes", + "kind": "field", + "name": "NumVotes", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vote.VoteString", + "kind": "field", + "name": "VoteString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.WorldSettings", + "namespace": "LibreMetaverse", + "name": "WorldSettings", + "signature": "LibreMetaverse.WorldSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.WorldSettings.AlwaysDecodeObjects", + "kind": "field", + "name": "AlwaysDecodeObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.WorldSettings.AlwaysRequestObjects", + "kind": "field", + "name": "AlwaysRequestObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.WorldSettings.CachePrimitives", + "kind": "field", + "name": "CachePrimitives", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.WorldSettings.StoreLandPatches", + "kind": "field", + "name": "StoreLandPatches", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.WorldSettings.TrackAvatars", + "kind": "field", + "name": "TrackAvatars", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.WorldSettings.TrackObjects", + "kind": "field", + "name": "TrackObjects", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.WorldSettings.UseInterpolationTimer", + "kind": "field", + "name": "UseInterpolationTimer", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.WorldSettings.#ctor", + "kind": "constructor", + "name": "WorldSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.XferDownload", + "namespace": "LibreMetaverse", + "name": "XferDownload", + "signature": "LibreMetaverse.XferDownload", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Transfer", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.XferDownload.Error", + "kind": "field", + "name": "Error", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TransferError", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.XferDownload.Filename", + "kind": "field", + "name": "Filename", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.XferDownload.PacketNum", + "kind": "field", + "name": "PacketNum", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.XferDownload.VFileID", + "kind": "field", + "name": "VFileID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.XferDownload.XferID", + "kind": "field", + "name": "XferID", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.XferDownload.#ctor", + "kind": "constructor", + "name": "XferDownload", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.XferReceivedEventArgs", + "namespace": "LibreMetaverse", + "name": "XferReceivedEventArgs", + "signature": "LibreMetaverse.XferReceivedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.XferReceivedEventArgs.#ctor(LibreMetaverse.XferDownload)", + "kind": "constructor", + "name": "XferReceivedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xfer", + "type": "LibreMetaverse.XferDownload", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.XferReceivedEventArgs.Xfer", + "kind": "property", + "name": "Xfer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.XferDownload", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.binBVHJoint", + "namespace": "LibreMetaverse", + "name": "binBVHJoint", + "signature": "LibreMetaverse.binBVHJoint", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.binBVHJoint.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.binBVHJoint.Priority", + "kind": "field", + "name": "Priority", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.binBVHJoint.Tag", + "kind": "field", + "name": "Tag", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.binBVHJoint.positionkeys", + "kind": "field", + "name": "positionkeys", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.binBVHJointKey[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.binBVHJoint.rotationkeys", + "kind": "field", + "name": "rotationkeys", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.binBVHJointKey[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.Equals(LibreMetaverse.binBVHJoint)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.binBVHJoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.Equals(LibreMetaverse.binBVHJointKey,LibreMetaverse.binBVHJointKey)", + "kind": "method", + "name": "Equals", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "arr1", + "type": "LibreMetaverse.binBVHJointKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "arr2", + "type": "LibreMetaverse.binBVHJointKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.Equals(LibreMetaverse.binBVHJointKey[],LibreMetaverse.binBVHJointKey[])", + "kind": "method", + "name": "Equals", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "arr1", + "type": "LibreMetaverse.binBVHJointKey[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "arr2", + "type": "LibreMetaverse.binBVHJointKey[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.op_Equality(LibreMetaverse.binBVHJoint,LibreMetaverse.binBVHJoint)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.binBVHJoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.binBVHJoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.binBVHJoint.op_Inequality(LibreMetaverse.binBVHJoint,LibreMetaverse.binBVHJoint)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.binBVHJoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.binBVHJoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.binBVHJointKey", + "namespace": "LibreMetaverse", + "name": "binBVHJointKey", + "signature": "LibreMetaverse.binBVHJointKey", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.binBVHJointKey.key_element", + "kind": "field", + "name": "key_element", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.binBVHJointKey.time", + "kind": "field", + "name": "time", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Imaging.Abstractions", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "231a8926-48a0-46cb-ac1e-22b8c576d3c2", + "file": "LibreMetaverse.Imaging.Abstractions.dll", + "sha256": "9f2d3fae8d4aff99791f6ea570ef4ee22a6f761a4bf73f622499db20f7030079" + }, + "counts": { + "catalog_types": 3, + "catalog_members": 20, + "metadata_types": 3, + "metadata_members": 20 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.Imaging.ITextureCodec", + "namespace": "LibreMetaverse.Imaging", + "name": "ITextureCodec", + "signature": "LibreMetaverse.Imaging.ITextureCodec", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Imaging.ITextureCodec.Decode(System.IO.Stream)", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Imaging.ManagedImage", + "namespace": "LibreMetaverse.Imaging", + "name": "ManagedImage", + "signature": "LibreMetaverse.Imaging.ManagedImage", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Alpha", + "kind": "field", + "name": "Alpha", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Blue", + "kind": "field", + "name": "Blue", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Bump", + "kind": "field", + "name": "Bump", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Channels", + "kind": "field", + "name": "Channels", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Green", + "kind": "field", + "name": "Green", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Height", + "kind": "field", + "name": "Height", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Red", + "kind": "field", + "name": "Red", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Width", + "kind": "field", + "name": "Width", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.#ctor(System.Int32,System.Int32,LibreMetaverse.Imaging.ManagedImage.ImageChannels)", + "kind": "constructor", + "name": "ManagedImage", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "width", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "height", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.Clone", + "kind": "method", + "name": "Clone", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ConvertChannels(LibreMetaverse.Imaging.ManagedImage.ImageChannels)", + "kind": "method", + "name": "ConvertChannels", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channels", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ExportRaw", + "kind": "method", + "name": "ExportRaw", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeBilinear(System.Int32,System.Int32)", + "kind": "method", + "name": "ResizeBilinear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "width", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "height", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeNearestNeighbor(System.Int32,System.Int32)", + "kind": "method", + "name": "ResizeNearestNeighbor", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "width", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "height", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "namespace": "LibreMetaverse.Imaging", + "name": "ImageChannels", + "signature": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.ImageChannels.Alpha", + "kind": "enum_value", + "name": "Alpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.ImageChannels.Bump", + "kind": "enum_value", + "name": "Bump", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.ImageChannels.Color", + "kind": "enum_value", + "name": "Color", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Imaging.ManagedImage.ImageChannels.Gray", + "kind": "enum_value", + "name": "Gray", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Imaging.Skia", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "199559ec-d6ef-4d0a-86c4-280c8fd9cb7e", + "file": "LibreMetaverse.Imaging.Skia.dll", + "sha256": "0e4cf075e4f95bb878d456af0e5f02ea186679412dcf2c5d7662431410e617c1" + }, + "counts": { + "catalog_types": 1, + "catalog_members": 3, + "metadata_types": 1, + "metadata_members": 3 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.Imaging.Skia.SkiaTextureCodec", + "namespace": "LibreMetaverse.Imaging.Skia", + "name": "SkiaTextureCodec", + "signature": "LibreMetaverse.Imaging.Skia.SkiaTextureCodec", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Imaging.ITextureCodec" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Imaging.Skia.SkiaTextureCodec.#ctor", + "kind": "constructor", + "name": "SkiaTextureCodec", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Skia.SkiaTextureCodec.Decode(System.IO.Stream)", + "kind": "method", + "name": "Decode", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Imaging.Skia.SkiaTextureCodec.ToManagedImage(SkiaSharp.SKBitmap)", + "kind": "method", + "name": "ToManagedImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Imaging.ManagedImage", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bitmap", + "type": "SkiaSharp.SKBitmap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.LslTools", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "6a171a1d-7b83-499e-8960-e841a7cf45bf", + "file": "LibreMetaverse.LslTools.dll", + "sha256": "64ce84342b60bc485de5937ff0302026a3fdda53ae321a52cbaede4be8457ac4" + }, + "counts": { + "catalog_types": 164, + "catalog_members": 768, + "metadata_types": 164, + "metadata_members": 768 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.LslTools.ANY", + "namespace": "LibreMetaverse.LslTools", + "name": "ANY", + "signature": "LibreMetaverse.LslTools.ANY", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ANY.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "ANY", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ANY.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ANY.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.AddToFunc", + "namespace": "LibreMetaverse.LslTools", + "name": "AddToFunc", + "signature": "LibreMetaverse.LslTools.AddToFunc", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.LslTools.AddToFunc.Invoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.AddToFunc.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "AddToFunc", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.AddToFunc.BeginInvoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.AddToFunc.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.AddToFunc.Invoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BASE", + "namespace": "LibreMetaverse.LslTools", + "name": "BASE", + "signature": "LibreMetaverse.LslTools.BASE", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BASE.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "BASE", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.BASE.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.BASE.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall", + "signature": "LibreMetaverse.LslTools.BaseCall", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.BaseCall.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.BaseCall.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_1", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_1", + "signature": "LibreMetaverse.LslTools.BaseCall_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_2", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_2", + "signature": "LibreMetaverse.LslTools.BaseCall_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_2_1", + "signature": "LibreMetaverse.LslTools.BaseCall_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_3", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_3", + "signature": "LibreMetaverse.LslTools.BaseCall_3", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_3.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_4", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_4", + "signature": "LibreMetaverse.LslTools.BaseCall_4", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_4.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_4_1", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_4_1", + "signature": "LibreMetaverse.LslTools.BaseCall_4_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall_4", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_4_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_4_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_5", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_5", + "signature": "LibreMetaverse.LslTools.BaseCall_5", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_5.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_5", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_6", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_6", + "signature": "LibreMetaverse.LslTools.BaseCall_6", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_6.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_6", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.BaseCall_6_1", + "namespace": "LibreMetaverse.LslTools", + "name": "BaseCall_6_1", + "signature": "LibreMetaverse.LslTools.BaseCall_6_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.BaseCall_6", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.BaseCall_6_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "BaseCall_6_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Builder", + "namespace": "LibreMetaverse.LslTools", + "name": "Builder", + "signature": "LibreMetaverse.LslTools.Builder", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.LslTools.Builder.Invoke(LibreMetaverse.LslTools.Transition)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Builder.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "Builder", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Builder.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Builder.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Builder.Invoke(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.COLON", + "namespace": "LibreMetaverse.LslTools", + "name": "COLON", + "signature": "LibreMetaverse.LslTools.COLON", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.COLON.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "COLON", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.COLON.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.COLON.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CSToolsException", + "namespace": "LibreMetaverse.LslTools", + "name": "CSToolsException", + "signature": "LibreMetaverse.LslTools.CSToolsException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.CSToolsException.handled", + "kind": "field", + "name": "handled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSToolsException.nExceptionNumber", + "kind": "field", + "name": "nExceptionNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSToolsException.sInput", + "kind": "field", + "name": "sInput", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSToolsException.slInfo", + "kind": "field", + "name": "slInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSToolsException.sym", + "kind": "field", + "name": "sym", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "en", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yy", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "en", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.TOKEN", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,System.String)", + "kind": "constructor", + "name": "CSToolsException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsException.Handle(LibreMetaverse.LslTools.ErrorHandler)", + "kind": "method", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "erh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CSToolsFatalException", + "namespace": "LibreMetaverse.LslTools", + "name": "CSToolsFatalException", + "signature": "LibreMetaverse.LslTools.CSToolsFatalException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.CSToolsException", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsFatalException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "kind": "constructor", + "name": "CSToolsFatalException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsFatalException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yy", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsFatalException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "en", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "kind": "constructor", + "name": "CSToolsFatalException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.TOKEN", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,System.String)", + "kind": "constructor", + "name": "CSToolsFatalException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.Handle(LibreMetaverse.LslTools.ErrorHandler)", + "kind": "method", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "erh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CSToolsStopException", + "namespace": "LibreMetaverse.LslTools", + "name": "CSToolsStopException", + "signature": "LibreMetaverse.LslTools.CSToolsStopException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.CSToolsException", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yy", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "en", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.TOKEN", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,System.String)", + "kind": "constructor", + "name": "CSToolsStopException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.Handle(LibreMetaverse.LslTools.ErrorHandler)", + "kind": "method", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "erh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CSymbol", + "namespace": "LibreMetaverse.LslTools", + "name": "CSymbol", + "signature": "LibreMetaverse.LslTools.CSymbol", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_defined", + "kind": "field", + "name": "m_defined", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_emitted", + "kind": "field", + "name": "m_emitted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_first", + "kind": "field", + "name": "m_first", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_follow", + "kind": "field", + "name": "m_follow", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_initialisation", + "kind": "field", + "name": "m_initialisation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_parser", + "kind": "field", + "name": "m_parser", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_prec", + "kind": "field", + "name": "m_prec", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_prod", + "kind": "field", + "name": "m_prod", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Production", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_prods", + "kind": "field", + "name": "m_prods", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_refSymbol", + "kind": "field", + "name": "m_refSymbol", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_symtype", + "kind": "field", + "name": "m_symtype", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_yynum", + "kind": "field", + "name": "m_yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "CSymbol", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "CSymbol", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.AddFollow(LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "AddFollow", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.AddStartItems(LibreMetaverse.LslTools.ParseState,LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "AddStartItems", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pstate", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "follows", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.IsNullable", + "kind": "method", + "name": "IsNullable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.IsTerminal", + "kind": "method", + "name": "IsTerminal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.Matches(System.String)", + "kind": "method", + "name": "Matches", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.Resolve", + "kind": "method", + "name": "Resolve", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.ShiftPrecedence(LibreMetaverse.LslTools.Production,LibreMetaverse.LslTools.ParseState)", + "kind": "method", + "name": "ShiftPrecedence", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prod", + "type": "LibreMetaverse.LslTools.Production", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ps", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CSymbol.TypeStr", + "kind": "method", + "name": "TypeStr", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CSymbol.SymType", + "namespace": "LibreMetaverse.LslTools", + "name": "SymType", + "signature": "LibreMetaverse.LslTools.CSymbol.SymType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.eofsymbol", + "kind": "enum_value", + "name": "eofsymbol", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.nodesymbol", + "kind": "enum_value", + "name": "nodesymbol", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.nonterminal", + "kind": "enum_value", + "name": "nonterminal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.oldaction", + "kind": "enum_value", + "name": "oldaction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.simpleaction", + "kind": "enum_value", + "name": "simpleaction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.terminal", + "kind": "enum_value", + "name": "terminal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CSymbol.SymType.unknown", + "kind": "enum_value", + "name": "unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.CSymbol.SymType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Call", + "namespace": "LibreMetaverse.LslTools", + "name": "Call", + "signature": "LibreMetaverse.LslTools.Call", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Call.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Call", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Call.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Call.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Call_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Call_1", + "signature": "LibreMetaverse.LslTools.Call_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Call", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Call_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Call_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Call_2", + "namespace": "LibreMetaverse.LslTools", + "name": "Call_2", + "signature": "LibreMetaverse.LslTools.Call_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Call", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Call_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Call_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Call_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Call_2_1", + "signature": "LibreMetaverse.LslTools.Call_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Call_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Call_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Call_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CatTest", + "namespace": "LibreMetaverse.LslTools", + "name": "CatTest", + "signature": "LibreMetaverse.LslTools.CatTest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.CatTest.#ctor(System.Globalization.UnicodeCategory)", + "kind": "constructor", + "name": "CatTest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "c", + "type": "System.Globalization.UnicodeCategory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CatTest.Test(System.Char)", + "kind": "method", + "name": "Test", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ch", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Charset", + "namespace": "LibreMetaverse.LslTools", + "name": "Charset", + "signature": "LibreMetaverse.LslTools.Charset", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Charset.GetEncoding(System.String,System.Boolean@,LibreMetaverse.LslTools.ErrorHandler)", + "kind": "method", + "name": "GetEncoding", + "static": true, + "visibility": "public", + "type": "System.Text.Encoding", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "enc", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "toupper", + "type": "System.Boolean\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "erh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Charset.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ClassBody", + "namespace": "LibreMetaverse.LslTools", + "name": "ClassBody", + "signature": "LibreMetaverse.LslTools.ClassBody", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ClassBody.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "ClassBody", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ClassBody.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ClassBody.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ClassBody_1", + "namespace": "LibreMetaverse.LslTools", + "name": "ClassBody_1", + "signature": "LibreMetaverse.LslTools.ClassBody_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ClassBody", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ClassBody_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "ClassBody_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ClassBody_2", + "namespace": "LibreMetaverse.LslTools", + "name": "ClassBody_2", + "signature": "LibreMetaverse.LslTools.ClassBody_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ClassBody", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ClassBody_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "ClassBody_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ClassBody_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "ClassBody_2_1", + "signature": "LibreMetaverse.LslTools.ClassBody_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ClassBody_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ClassBody_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "ClassBody_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CommentList", + "namespace": "LibreMetaverse.LslTools", + "name": "CommentList", + "signature": "LibreMetaverse.LslTools.CommentList", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.CommentList.len", + "kind": "field", + "name": "len", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CommentList.spos", + "kind": "field", + "name": "spos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CommentList.tail", + "kind": "field", + "name": "tail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CommentList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CommentList.#ctor(System.Int32,System.Int32,LibreMetaverse.LslTools.CommentList)", + "kind": "constructor", + "name": "CommentList", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "st", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ln", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.CommentList", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Cons", + "namespace": "LibreMetaverse.LslTools", + "name": "Cons", + "signature": "LibreMetaverse.LslTools.Cons", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Cons.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Cons", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Cons.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Cons.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Cons_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Cons_1", + "signature": "LibreMetaverse.LslTools.Cons_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Cons", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Cons_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Cons_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Cons_2", + "namespace": "LibreMetaverse.LslTools", + "name": "Cons_2", + "signature": "LibreMetaverse.LslTools.Cons_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Cons", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Cons_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Cons_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Cons_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Cons_2_1", + "signature": "LibreMetaverse.LslTools.Cons_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Cons_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Cons_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Cons_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.CsReader", + "namespace": "LibreMetaverse.LslTools", + "name": "CsReader", + "signature": "LibreMetaverse.LslTools.CsReader", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.CsReader.fname", + "kind": "field", + "name": "fname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.CsReader.lm", + "kind": "field", + "name": "lm", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.LineManager", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(LibreMetaverse.LslTools.CsReader,System.Text.Encoding)", + "kind": "constructor", + "name": "CsReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inf", + "type": "LibreMetaverse.LslTools.CsReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "enc", + "type": "System.Text.Encoding", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(System.String)", + "kind": "constructor", + "name": "CsReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(System.String,System.Text.Encoding)", + "kind": "constructor", + "name": "CsReader", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "enc", + "type": "System.Text.Encoding", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.Eof", + "kind": "method", + "name": "Eof", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.Read", + "kind": "method", + "name": "Read", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.Read(System.Char[],System.Int32,System.Int32)", + "kind": "method", + "name": "Read", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "arr", + "type": "System.Char[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offset", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.CsReader.ReadLine", + "kind": "method", + "name": "ReadLine", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Dfa", + "namespace": "LibreMetaverse.LslTools", + "name": "Dfa", + "signature": "LibreMetaverse.LslTools.Dfa", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.LNode", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Dfa.m_actions", + "kind": "field", + "name": "m_actions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Dfa.Action", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Dfa.m_map", + "kind": "field", + "name": "m_map", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Dfa.m_reswds", + "kind": "field", + "name": "m_reswds", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Dfa.m_tokClass", + "kind": "field", + "name": "m_tokClass", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.#ctor(LibreMetaverse.LslTools.Nfa)", + "kind": "constructor", + "name": "Dfa", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "nfa", + "type": "LibreMetaverse.LslTools.Nfa", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.#ctor(LibreMetaverse.LslTools.TokensGen)", + "kind": "constructor", + "name": "Dfa", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.TokensGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.Match(System.String,System.Int32,System.Int32@)", + "kind": "method", + "name": "Match", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ix", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.SetTokens(LibreMetaverse.LslTools.YyLexer,System.Collections.Hashtable)", + "kind": "method", + "name": "SetTokens", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.YyLexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "h", + "type": "System.Collections.Hashtable", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Dfa.Action", + "namespace": "LibreMetaverse.LslTools", + "name": "Action", + "signature": "LibreMetaverse.LslTools.Dfa.Action", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Dfa.Action.a_act", + "kind": "field", + "name": "a_act", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Dfa.Action.a_next", + "kind": "field", + "name": "a_next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Dfa.Action", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.Action.#ctor(System.Int32,LibreMetaverse.LslTools.Dfa.Action)", + "kind": "constructor", + "name": "Action", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "act", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.Dfa.Action", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Dfa.Action.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.EOF", + "namespace": "LibreMetaverse.LslTools", + "name": "EOF", + "signature": "LibreMetaverse.LslTools.EOF", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.CSymbol", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.EOF.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "EOF", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.EOF.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "EOF", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.EOF.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.EOF.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.EOF.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Error", + "namespace": "LibreMetaverse.LslTools", + "name": "Error", + "signature": "LibreMetaverse.LslTools.Error", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.SYMBOL", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Error.state", + "kind": "field", + "name": "state", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Error.sym", + "kind": "field", + "name": "sym", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Error.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Error", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Error.#ctor(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.ParseStackEntry)", + "kind": "constructor", + "name": "Error", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.ParseStackEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Error.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Error.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ErrorHandler", + "namespace": "LibreMetaverse.LslTools", + "name": "ErrorHandler", + "signature": "LibreMetaverse.LslTools.ErrorHandler", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ErrorHandler.counter", + "kind": "field", + "name": "counter", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ErrorHandler.throwExceptions", + "kind": "field", + "name": "throwExceptions", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.#ctor", + "kind": "constructor", + "name": "ErrorHandler", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.#ctor(System.Boolean)", + "kind": "constructor", + "name": "ErrorHandler", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ee", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.Error(LibreMetaverse.LslTools.CSToolsException)", + "kind": "method", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "e", + "type": "LibreMetaverse.LslTools.CSToolsException", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.Report(LibreMetaverse.LslTools.CSToolsException)", + "kind": "method", + "name": "Report", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "e", + "type": "LibreMetaverse.LslTools.CSToolsException", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Func", + "namespace": "LibreMetaverse.LslTools", + "name": "Func", + "signature": "LibreMetaverse.LslTools.Func", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.LslTools.Func.Invoke(LibreMetaverse.LslTools.Transition)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Func.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "Func", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Func.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Func.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Func.Invoke(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff", + "signature": "LibreMetaverse.LslTools.GStuff", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.GStuff.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.GStuff.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_1", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_1", + "signature": "LibreMetaverse.LslTools.GStuff_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_2", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_2", + "signature": "LibreMetaverse.LslTools.GStuff_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_2_1", + "signature": "LibreMetaverse.LslTools.GStuff_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_3", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_3", + "signature": "LibreMetaverse.LslTools.GStuff_3", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_3.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_4", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_4", + "signature": "LibreMetaverse.LslTools.GStuff_4", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_4.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_4_1", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_4_1", + "signature": "LibreMetaverse.LslTools.GStuff_4_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff_4", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_4_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_4_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_5", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_5", + "signature": "LibreMetaverse.LslTools.GStuff_5", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_5.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_5", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_6", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_6", + "signature": "LibreMetaverse.LslTools.GStuff_6", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_6.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_6", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GStuff_6_1", + "namespace": "LibreMetaverse.LslTools", + "name": "GStuff_6_1", + "signature": "LibreMetaverse.LslTools.GStuff_6_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GStuff_6", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.GStuff_6_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "GStuff_6_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.GenBase", + "namespace": "LibreMetaverse.LslTools", + "name": "GenBase", + "signature": "LibreMetaverse.LslTools.GenBase", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.GenBase.LastSymbol", + "kind": "field", + "name": "LastSymbol", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.GenBase.erh", + "kind": "field", + "name": "erh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.GenBase.m_outFile", + "kind": "field", + "name": "m_outFile", + "static": false, + "visibility": "public", + "type": "System.IO.TextWriter", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.GenBase.m_outname", + "kind": "field", + "name": "m_outname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.GenBase.m_prod", + "kind": "field", + "name": "m_prod", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Production", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "kind": "method", + "name": "EmitClassDefin", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "b", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inf", + "type": "LibreMetaverse.LslTools.CsReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "defbas", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bas", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "name", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "lx", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.Error(System.Int32,System.Int32,System.String)", + "kind": "method", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.NonWhite(System.String,System.Int32@,System.Int32)", + "kind": "method", + "name": "NonWhite", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "buf", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offset", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.Saypos(System.Int32)", + "kind": "method", + "name": "Saypos", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.White(System.String,System.Int32@,System.Int32)", + "kind": "method", + "name": "White", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "buf", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offset", + "type": "System.Int32\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.line(System.Int32)", + "kind": "method", + "name": "line", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.position(System.Int32)", + "kind": "method", + "name": "position", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.GenBase.sourceLineInfo(System.Int32)", + "kind": "method", + "name": "sourceLineInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ID", + "namespace": "LibreMetaverse.LslTools", + "name": "ID", + "signature": "LibreMetaverse.LslTools.ID", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ID.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "ID", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ID.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ID.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item", + "namespace": "LibreMetaverse.LslTools", + "name": "Item", + "signature": "LibreMetaverse.LslTools.Item", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Item.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Item.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_1", + "signature": "LibreMetaverse.LslTools.Item_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_10", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_10", + "signature": "LibreMetaverse.LslTools.Item_10", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_10.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_10", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_10_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_10_1", + "signature": "LibreMetaverse.LslTools.Item_10_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_10", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_10_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_10_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_11", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_11", + "signature": "LibreMetaverse.LslTools.Item_11", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_11.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_11", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_12", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_12", + "signature": "LibreMetaverse.LslTools.Item_12", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_12.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_12", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_12_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_12_1", + "signature": "LibreMetaverse.LslTools.Item_12_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_12", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_12_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_12_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_13", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_13", + "signature": "LibreMetaverse.LslTools.Item_13", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_13.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_13", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_14", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_14", + "signature": "LibreMetaverse.LslTools.Item_14", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_14.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_14", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_14_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_14_1", + "signature": "LibreMetaverse.LslTools.Item_14_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_14", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_14_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_14_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_15", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_15", + "signature": "LibreMetaverse.LslTools.Item_15", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_15.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_15", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_16", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_16", + "signature": "LibreMetaverse.LslTools.Item_16", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_16.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_16", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_16_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_16_1", + "signature": "LibreMetaverse.LslTools.Item_16_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_16", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_16_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_16_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_17", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_17", + "signature": "LibreMetaverse.LslTools.Item_17", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_17.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_17", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_18", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_18", + "signature": "LibreMetaverse.LslTools.Item_18", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_18.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_18", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_18_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_18_1", + "signature": "LibreMetaverse.LslTools.Item_18_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_18", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_18_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_18_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_19", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_19", + "signature": "LibreMetaverse.LslTools.Item_19", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_19.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_19", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_2", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_2", + "signature": "LibreMetaverse.LslTools.Item_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_20", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_20", + "signature": "LibreMetaverse.LslTools.Item_20", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_20.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_20", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_20_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_20_1", + "signature": "LibreMetaverse.LslTools.Item_20_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_20", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_20_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_20_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_21", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_21", + "signature": "LibreMetaverse.LslTools.Item_21", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_21.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_21", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_22", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_22", + "signature": "LibreMetaverse.LslTools.Item_22", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_22.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_22", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_22_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_22_1", + "signature": "LibreMetaverse.LslTools.Item_22_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_22", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_22_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_22_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_23", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_23", + "signature": "LibreMetaverse.LslTools.Item_23", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_23.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_23", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_24", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_24", + "signature": "LibreMetaverse.LslTools.Item_24", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_24.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_24", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_24_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_24_1", + "signature": "LibreMetaverse.LslTools.Item_24_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_24", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_24_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_24_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_2_1", + "signature": "LibreMetaverse.LslTools.Item_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_3", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_3", + "signature": "LibreMetaverse.LslTools.Item_3", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_3.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_4", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_4", + "signature": "LibreMetaverse.LslTools.Item_4", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_4.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_4_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_4_1", + "signature": "LibreMetaverse.LslTools.Item_4_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_4", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_4_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_4_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_5", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_5", + "signature": "LibreMetaverse.LslTools.Item_5", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_5.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_5", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_6", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_6", + "signature": "LibreMetaverse.LslTools.Item_6", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_6.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_6", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_6_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_6_1", + "signature": "LibreMetaverse.LslTools.Item_6_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_6", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_6_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_6_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_7", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_7", + "signature": "LibreMetaverse.LslTools.Item_7", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_7.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_7", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_8", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_8", + "signature": "LibreMetaverse.LslTools.Item_8", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_8.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_8", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_8_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_8_1", + "signature": "LibreMetaverse.LslTools.Item_8_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item_8", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_8_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_8_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Item_9", + "namespace": "LibreMetaverse.LslTools", + "name": "Item_9", + "signature": "LibreMetaverse.LslTools.Item_9", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Item", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Item_9.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Item_9", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.LBRACE", + "namespace": "LibreMetaverse.LslTools", + "name": "LBRACE", + "signature": "LibreMetaverse.LslTools.LBRACE", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.LBRACE.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "LBRACE", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.LBRACE.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.LBRACE.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.LBRACK", + "namespace": "LibreMetaverse.LslTools", + "name": "LBRACK", + "signature": "LibreMetaverse.LslTools.LBRACK", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.LBRACK.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "LBRACK", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.LBRACK.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.LBRACK.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.LNode", + "namespace": "LibreMetaverse.LslTools", + "name": "LNode", + "signature": "LibreMetaverse.LslTools.LNode", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.LNode.m_state", + "kind": "field", + "name": "m_state", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.LNode.m_tks", + "kind": "field", + "name": "m_tks", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.TokensGen", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.LPAREN", + "namespace": "LibreMetaverse.LslTools", + "name": "LPAREN", + "signature": "LibreMetaverse.LslTools.LPAREN", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.LPAREN.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "LPAREN", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.LPAREN.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.LPAREN.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Lexer", + "namespace": "LibreMetaverse.LslTools", + "name": "Lexer", + "signature": "LibreMetaverse.LslTools.Lexer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Lexer.m_buf", + "kind": "field", + "name": "m_buf", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Lexer.m_debug", + "kind": "field", + "name": "m_debug", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Lexer.m_pch", + "kind": "field", + "name": "m_pch", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Lexer.m_state", + "kind": "field", + "name": "m_state", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Lexer.yytext", + "kind": "field", + "name": "yytext", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.#ctor(LibreMetaverse.LslTools.YyLexer)", + "kind": "constructor", + "name": "Lexer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.YyLexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Advance", + "kind": "method", + "name": "Advance", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.GetChar", + "kind": "method", + "name": "GetChar", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Lexer._Enumerator", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Next", + "kind": "method", + "name": "Next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.TOKEN", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.PeekChar", + "kind": "method", + "name": "PeekChar", + "static": false, + "visibility": "public", + "type": "System.Char", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Saypos(System.Int32)", + "kind": "method", + "name": "Saypos", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(LibreMetaverse.LslTools.CsReader)", + "kind": "method", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inFile", + "type": "LibreMetaverse.LslTools.CsReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(System.IO.StreamReader)", + "kind": "method", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inFile", + "type": "System.IO.StreamReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(System.String)", + "kind": "method", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "buf", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.UnGetChar", + "kind": "method", + "name": "UnGetChar", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.sourceLine(LibreMetaverse.LslTools.SourceLineInfo)", + "kind": "method", + "name": "sourceLine", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.sourceLineInfo(System.Int32)", + "kind": "method", + "name": "sourceLineInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SourceLineInfo", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer.yy_begin(System.String)", + "kind": "method", + "name": "yy_begin", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "newstate", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Lexer.m_start", + "kind": "property", + "name": "m_start", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Dfa", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Lexer.tokens", + "kind": "property", + "name": "tokens", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.YyLexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Lexer.yypos", + "kind": "property", + "name": "yypos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Lexer._Enumerator", + "namespace": "LibreMetaverse.LslTools", + "name": "_Enumerator", + "signature": "LibreMetaverse.LslTools.Lexer._Enumerator", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer._Enumerator.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "_Enumerator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer._Enumerator.MoveNext", + "kind": "method", + "name": "MoveNext", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Lexer._Enumerator.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Lexer._Enumerator.Current", + "kind": "property", + "name": "Current", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.TOKEN", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.LineList", + "namespace": "LibreMetaverse.LslTools", + "name": "LineList", + "signature": "LibreMetaverse.LslTools.LineList", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.LineList.comments", + "kind": "field", + "name": "comments", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CommentList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.LineList.head", + "kind": "field", + "name": "head", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.LineList.tail", + "kind": "field", + "name": "tail", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.LineList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.LineList.#ctor(System.Int32,LibreMetaverse.LslTools.LineList)", + "kind": "constructor", + "name": "LineList", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "h", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.LineList", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.LineList.getpos(System.Int32)", + "kind": "method", + "name": "getpos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.LineManager", + "namespace": "LibreMetaverse.LslTools", + "name": "LineManager", + "signature": "LibreMetaverse.LslTools.LineManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.LineManager.end", + "kind": "field", + "name": "end", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.LineManager.lines", + "kind": "field", + "name": "lines", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.LineManager.list", + "kind": "field", + "name": "list", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.LineList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.LineManager.#ctor", + "kind": "constructor", + "name": "LineManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.LineManager.backto(System.Int32)", + "kind": "method", + "name": "backto", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.LineManager.comment(System.Int32,System.Int32)", + "kind": "method", + "name": "comment", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "len", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.LineManager.newline(System.Int32)", + "kind": "method", + "name": "newline", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Literal", + "namespace": "LibreMetaverse.LslTools", + "name": "Literal", + "signature": "LibreMetaverse.LslTools.Literal", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.CSymbol", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Literal.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "Literal", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Literal.CouldStart(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "CouldStart", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "nonterm", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Literal.Resolve", + "kind": "method", + "name": "Resolve", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Literal.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Literal.TypeStr", + "kind": "method", + "name": "TypeStr", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.NEW", + "namespace": "LibreMetaverse.LslTools", + "name": "NEW", + "signature": "LibreMetaverse.LslTools.NEW", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.NEW.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "NEW", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.NEW.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.NEW.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name", + "namespace": "LibreMetaverse.LslTools", + "name": "Name", + "signature": "LibreMetaverse.LslTools.Name", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Name.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Name.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Name_1", + "signature": "LibreMetaverse.LslTools.Name_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Name", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name_2", + "namespace": "LibreMetaverse.LslTools", + "name": "Name_2", + "signature": "LibreMetaverse.LslTools.Name_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Name", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Name_2_1", + "signature": "LibreMetaverse.LslTools.Name_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Name_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name_3", + "namespace": "LibreMetaverse.LslTools", + "name": "Name_3", + "signature": "LibreMetaverse.LslTools.Name_3", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Name", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name_3.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name_3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name_4", + "namespace": "LibreMetaverse.LslTools", + "name": "Name_4", + "signature": "LibreMetaverse.LslTools.Name_4", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Name", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name_4.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name_4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Name_4_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Name_4_1", + "signature": "LibreMetaverse.LslTools.Name_4_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Name_4", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Name_4_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Name_4_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Nfa", + "namespace": "LibreMetaverse.LslTools", + "name": "Nfa", + "signature": "LibreMetaverse.LslTools.Nfa", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.NfaNode", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Nfa.m_end", + "kind": "field", + "name": "m_end", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.NfaNode", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Nfa.#ctor(LibreMetaverse.LslTools.TokensGen)", + "kind": "constructor", + "name": "Nfa", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.TokensGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Nfa.#ctor(LibreMetaverse.LslTools.TokensGen,LibreMetaverse.LslTools.Regex)", + "kind": "constructor", + "name": "Nfa", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.TokensGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "re", + "type": "LibreMetaverse.LslTools.Regex", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.NfaNode", + "namespace": "LibreMetaverse.LslTools", + "name": "NfaNode", + "signature": "LibreMetaverse.LslTools.NfaNode", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.LNode", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.NfaNode.m_arcs", + "kind": "field", + "name": "m_arcs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.NfaNode.m_eps", + "kind": "field", + "name": "m_eps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.NfaNode.m_sTerminal", + "kind": "field", + "name": "m_sTerminal", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.NfaNode.#ctor(LibreMetaverse.LslTools.TokensGen)", + "kind": "constructor", + "name": "NfaNode", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.TokensGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddArc(System.Char,LibreMetaverse.LslTools.NfaNode)", + "kind": "method", + "name": "AddArc", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ch", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.NfaNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddArcEx(LibreMetaverse.LslTools.Regex,LibreMetaverse.LslTools.NfaNode)", + "kind": "method", + "name": "AddArcEx", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "re", + "type": "LibreMetaverse.LslTools.Regex", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.NfaNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddEps(LibreMetaverse.LslTools.NfaNode)", + "kind": "method", + "name": "AddEps", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "next", + "type": "LibreMetaverse.LslTools.NfaNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddTarget(System.Char,LibreMetaverse.LslTools.Dfa)", + "kind": "method", + "name": "AddTarget", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ch", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.Dfa", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddUArc(System.Char,LibreMetaverse.LslTools.NfaNode)", + "kind": "method", + "name": "AddUArc", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ch", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.NfaNode", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Null", + "namespace": "LibreMetaverse.LslTools", + "name": "Null", + "signature": "LibreMetaverse.LslTools.Null", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Null.#ctor(LibreMetaverse.LslTools.Lexer,System.String)", + "kind": "constructor", + "name": "Null", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "proxy", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Null.#ctor(LibreMetaverse.LslTools.Parser,System.String)", + "kind": "constructor", + "name": "Null", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "proxy", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Null.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ObjectList", + "namespace": "LibreMetaverse.LslTools", + "name": "ObjectList", + "signature": "LibreMetaverse.LslTools.ObjectList", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.#ctor", + "kind": "constructor", + "name": "ObjectList", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.Add(System.Object)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.IEnumerator", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.Pop", + "kind": "method", + "name": "Pop", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.Push(System.Object)", + "kind": "method", + "name": "Push", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ObjectList.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ObjectList.Item(System.Int32)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "ix", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ObjectList.Top", + "kind": "property", + "name": "Top", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ObjectList.OListEnumerator", + "namespace": "LibreMetaverse.LslTools", + "name": "OListEnumerator", + "signature": "LibreMetaverse.LslTools.ObjectList.OListEnumerator", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.Collections.IEnumerator" + ], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.OListEnumerator.#ctor(LibreMetaverse.LslTools.ObjectList)", + "kind": "constructor", + "name": "OListEnumerator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "LibreMetaverse.LslTools.ObjectList", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.OListEnumerator.MoveNext", + "kind": "method", + "name": "MoveNext", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ObjectList.OListEnumerator.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ObjectList.OListEnumerator.Current", + "kind": "property", + "name": "Current", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParseStackEntry", + "namespace": "LibreMetaverse.LslTools", + "name": "ParseStackEntry", + "signature": "LibreMetaverse.LslTools.ParseStackEntry", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParseStackEntry.m_state", + "kind": "field", + "name": "m_state", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParseStackEntry.m_value", + "kind": "field", + "name": "m_value", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParseStackEntry.yyps", + "kind": "field", + "name": "yyps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Parser", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseStackEntry.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "ParseStackEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseStackEntry.#ctor(LibreMetaverse.LslTools.Parser,System.Int32,LibreMetaverse.LslTools.SYMBOL)", + "kind": "constructor", + "name": "ParseStackEntry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParseState", + "namespace": "LibreMetaverse.LslTools", + "name": "ParseState", + "signature": "LibreMetaverse.LslTools.ParseState", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParseState.m_accessingSymbol", + "kind": "field", + "name": "m_accessingSymbol", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParseState.m_sgen", + "kind": "field", + "name": "m_sgen", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParseState.m_state", + "kind": "field", + "name": "m_state", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParseState.m_transitions", + "kind": "field", + "name": "m_transitions", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.#ctor(LibreMetaverse.LslTools.SymbolsGen,LibreMetaverse.LslTools.CSymbol)", + "kind": "constructor", + "name": "ParseState", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "acc", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.Accessor(LibreMetaverse.LslTools.CSymbol[])", + "kind": "method", + "name": "Accessor", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "LibreMetaverse.LslTools.CSymbol[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.AddEntries", + "kind": "method", + "name": "AddEntries", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.CheckClosure(LibreMetaverse.LslTools.ProdItem)", + "kind": "method", + "name": "CheckClosure", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.LslTools.ProdItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.CheckExists", + "kind": "method", + "name": "CheckExists", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParseState", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.Closure", + "kind": "method", + "name": "Closure", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.GetTransition(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "GetTransition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Transition", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.Lookback(LibreMetaverse.LslTools.Production,LibreMetaverse.LslTools.ParseState)", + "kind": "method", + "name": "Lookback", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pr", + "type": "LibreMetaverse.LslTools.Production", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.MaybeAdd(LibreMetaverse.LslTools.ProdItem)", + "kind": "method", + "name": "MaybeAdd", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.LslTools.ProdItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.Print0", + "kind": "method", + "name": "Print0", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.ReduceStates", + "kind": "method", + "name": "ReduceStates", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.SameAs(LibreMetaverse.LslTools.ParseState)", + "kind": "method", + "name": "SameAs", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "p", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParseState.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Parser", + "namespace": "LibreMetaverse.LslTools", + "name": "Parser", + "signature": "LibreMetaverse.LslTools.Parser", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Parser.m_debug", + "kind": "field", + "name": "m_debug", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Parser.m_lexer", + "kind": "field", + "name": "m_lexer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Lexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Parser.m_stkdebug", + "kind": "field", + "name": "m_stkdebug", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Parser.m_symbols", + "kind": "field", + "name": "m_symbols", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.YyParser", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.#ctor(LibreMetaverse.LslTools.YyParser,LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "Parser", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.YyParser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lexer", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.Error(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "kind": "method", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sym", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.NextSym", + "kind": "method", + "name": "NextSym", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.Parse(LibreMetaverse.LslTools.CsReader)", + "kind": "method", + "name": "Parse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inFile", + "type": "LibreMetaverse.LslTools.CsReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.Parse(System.IO.StreamReader)", + "kind": "method", + "name": "Parse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "input", + "type": "System.IO.StreamReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "buf", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Parser.StackAt(System.Int32)", + "kind": "method", + "name": "StackAt", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParseStackEntry", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ix", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParserAction", + "namespace": "LibreMetaverse.LslTools", + "name": "ParserAction", + "signature": "LibreMetaverse.LslTools.ParserAction", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.CSymbol", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParserAction.m_len", + "kind": "field", + "name": "m_len", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParserAction.m_sym", + "kind": "field", + "name": "m_sym", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserAction.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "ParserAction", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserAction.ActNum", + "kind": "method", + "name": "ActNum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserAction.Action(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Action", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserAction.IsAction", + "kind": "method", + "name": "IsAction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserAction.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParserEntry", + "namespace": "LibreMetaverse.LslTools", + "name": "ParserEntry", + "signature": "LibreMetaverse.LslTools.ParserEntry", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParserEntry.m_action", + "kind": "field", + "name": "m_action", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParserAction", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParserEntry.m_priority", + "kind": "field", + "name": "m_priority", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserEntry.IsReduce", + "kind": "method", + "name": "IsReduce", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserEntry.Pass(LibreMetaverse.LslTools.ParseStackEntry@)", + "kind": "method", + "name": "Pass", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "top", + "type": "LibreMetaverse.LslTools.ParseStackEntry\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserEntry.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ParserEntry.str", + "kind": "property", + "name": "str", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParserOldAction", + "namespace": "LibreMetaverse.LslTools", + "name": "ParserOldAction", + "signature": "LibreMetaverse.LslTools.ParserOldAction", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ParserAction", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParserOldAction.m_action", + "kind": "field", + "name": "m_action", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "ParserOldAction", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.ActNum", + "kind": "method", + "name": "ActNum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.Action(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Action", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SYMBOL", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParserReduce", + "namespace": "LibreMetaverse.LslTools", + "name": "ParserReduce", + "signature": "LibreMetaverse.LslTools.ParserReduce", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ParserEntry", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParserReduce.m_depth", + "kind": "field", + "name": "m_depth", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParserReduce.m_lookAhead", + "kind": "field", + "name": "m_lookAhead", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParserReduce.m_prod", + "kind": "field", + "name": "m_prod", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Production", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserReduce.#ctor(LibreMetaverse.LslTools.ParserAction,System.Int32,LibreMetaverse.LslTools.Production)", + "kind": "constructor", + "name": "ParserReduce", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.LslTools.ParserAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "depth", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prod", + "type": "LibreMetaverse.LslTools.Production", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserReduce.BuildLookback(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildLookback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserReduce.IsReduce", + "kind": "method", + "name": "IsReduce", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserReduce.Pass(LibreMetaverse.LslTools.ParseStackEntry@)", + "kind": "method", + "name": "Pass", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "top", + "type": "LibreMetaverse.LslTools.ParseStackEntry\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserReduce.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ParserReduce.str", + "kind": "property", + "name": "str", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParserShift", + "namespace": "LibreMetaverse.LslTools", + "name": "ParserShift", + "signature": "LibreMetaverse.LslTools.ParserShift", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ParserEntry", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParserShift.m_next", + "kind": "field", + "name": "m_next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParseState", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserShift.#ctor", + "kind": "constructor", + "name": "ParserShift", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserShift.#ctor(LibreMetaverse.LslTools.ParserAction,LibreMetaverse.LslTools.ParseState)", + "kind": "constructor", + "name": "ParserShift", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "LibreMetaverse.LslTools.ParserAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserShift.Pass(LibreMetaverse.LslTools.ParseStackEntry@)", + "kind": "method", + "name": "Pass", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "top", + "type": "LibreMetaverse.LslTools.ParseStackEntry\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserShift.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.ParserShift.str", + "kind": "property", + "name": "str", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParserSimpleAction", + "namespace": "LibreMetaverse.LslTools", + "name": "ParserSimpleAction", + "signature": "LibreMetaverse.LslTools.ParserSimpleAction", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.ParserAction", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "ParserSimpleAction", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.TypeStr", + "kind": "method", + "name": "TypeStr", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ParsingInfo", + "namespace": "LibreMetaverse.LslTools", + "name": "ParsingInfo", + "signature": "LibreMetaverse.LslTools.ParsingInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ParsingInfo.m_name", + "kind": "field", + "name": "m_name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParsingInfo.m_parsetable", + "kind": "field", + "name": "m_parsetable", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ParsingInfo.m_yynum", + "kind": "field", + "name": "m_yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParsingInfo.#ctor(System.String,System.Int32)", + "kind": "constructor", + "name": "ParsingInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "num", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ParsingInfo.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Path", + "namespace": "LibreMetaverse.LslTools", + "name": "Path", + "signature": "LibreMetaverse.LslTools.Path", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Path.valid", + "kind": "field", + "name": "valid", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Path.#ctor(LibreMetaverse.LslTools.CSymbol[])", + "kind": "constructor", + "name": "Path", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "LibreMetaverse.LslTools.CSymbol[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Path.#ctor(LibreMetaverse.LslTools.ParseState,LibreMetaverse.LslTools.CSymbol[])", + "kind": "constructor", + "name": "Path", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "x", + "type": "LibreMetaverse.LslTools.CSymbol[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Path.#ctor(LibreMetaverse.LslTools.ParseState[])", + "kind": "constructor", + "name": "Path", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.ParseState[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Path.Spelling", + "kind": "property", + "name": "Spelling", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Path.Top", + "kind": "property", + "name": "Top", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParseState", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Precedence", + "namespace": "LibreMetaverse.LslTools", + "name": "Precedence", + "signature": "LibreMetaverse.LslTools.Precedence", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.m_next", + "kind": "field", + "name": "m_next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.m_prec", + "kind": "field", + "name": "m_prec", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.m_type", + "kind": "field", + "name": "m_type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Precedence.#ctor(LibreMetaverse.LslTools.Precedence.PrecType,System.Int32,LibreMetaverse.LslTools.Precedence)", + "kind": "constructor", + "name": "Precedence", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "next", + "type": "LibreMetaverse.LslTools.Precedence", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.CSymbol,LibreMetaverse.LslTools.Production,System.Int32)", + "kind": "method", + "name": "Check", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "LibreMetaverse.LslTools.Production", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "d", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.Precedence,LibreMetaverse.LslTools.Precedence.PrecType,System.Int32)", + "kind": "method", + "name": "Check", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "p", + "type": "LibreMetaverse.LslTools.Precedence", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "d", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.Production)", + "kind": "method", + "name": "Check", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "p", + "type": "LibreMetaverse.LslTools.Production", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Precedence.PrecType", + "namespace": "LibreMetaverse.LslTools", + "name": "PrecType", + "signature": "LibreMetaverse.LslTools.Precedence.PrecType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.PrecType.after", + "kind": "enum_value", + "name": "after", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.PrecType.before", + "kind": "enum_value", + "name": "before", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.PrecType.left", + "kind": "enum_value", + "name": "left", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.PrecType.nonassoc", + "kind": "enum_value", + "name": "nonassoc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Precedence.PrecType.right", + "kind": "enum_value", + "name": "right", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ProdItem", + "namespace": "LibreMetaverse.LslTools", + "name": "ProdItem", + "signature": "LibreMetaverse.LslTools.ProdItem", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ProdItem.m_done", + "kind": "field", + "name": "m_done", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ProdItem.m_pos", + "kind": "field", + "name": "m_pos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ProdItem.m_prod", + "kind": "field", + "name": "m_prod", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Production", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ProdItem.#ctor", + "kind": "constructor", + "name": "ProdItem", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ProdItem.#ctor(LibreMetaverse.LslTools.Production,System.Int32)", + "kind": "constructor", + "name": "ProdItem", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prod", + "type": "LibreMetaverse.LslTools.Production", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ProdItem.FirstOfRest(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "method", + "name": "FirstOfRest", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ProdItem.IsReducingAction", + "kind": "method", + "name": "IsReducingAction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ProdItem.Next", + "kind": "method", + "name": "Next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ProdItem.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Production", + "namespace": "LibreMetaverse.LslTools", + "name": "Production", + "signature": "LibreMetaverse.LslTools.Production", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Production.m_actionsOnly", + "kind": "field", + "name": "m_actionsOnly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Production.m_alias", + "kind": "field", + "name": "m_alias", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Production.m_lhs", + "kind": "field", + "name": "m_lhs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Production.m_pno", + "kind": "field", + "name": "m_pno", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Production.m_prec", + "kind": "field", + "name": "m_prec", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Production.m_rhs", + "kind": "field", + "name": "m_rhs", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "Production", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.#ctor(LibreMetaverse.LslTools.SymbolsGen,LibreMetaverse.LslTools.CSymbol)", + "kind": "constructor", + "name": "Production", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lhs", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.AddFirst(LibreMetaverse.LslTools.CSymbol,System.Int32)", + "kind": "method", + "name": "AddFirst", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "j", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.AddToRhs(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "AddToRhs", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.CouldBeEmpty(System.Int32)", + "kind": "method", + "name": "CouldBeEmpty", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "j", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.Prefix(System.Int32)", + "kind": "method", + "name": "Prefix", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "i", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Production.StackRef(System.String@,System.Int32,System.Int32)", + "kind": "method", + "name": "StackRef", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ch", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ix", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.RBRACE", + "namespace": "LibreMetaverse.LslTools", + "name": "RBRACE", + "signature": "LibreMetaverse.LslTools.RBRACE", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.RBRACE.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "RBRACE", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.RBRACE.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.RBRACE.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.RBRACK", + "namespace": "LibreMetaverse.LslTools", + "name": "RBRACK", + "signature": "LibreMetaverse.LslTools.RBRACK", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.RBRACK.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "RBRACK", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.RBRACK.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.RBRACK.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.RPAREN", + "namespace": "LibreMetaverse.LslTools", + "name": "RPAREN", + "signature": "LibreMetaverse.LslTools.RPAREN", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.RPAREN.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "RPAREN", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.RPAREN.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.RPAREN.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Regex", + "namespace": "LibreMetaverse.LslTools", + "name": "Regex", + "signature": "LibreMetaverse.LslTools.Regex", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Regex.m_sub", + "kind": "field", + "name": "m_sub", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Regex", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Regex.#ctor(LibreMetaverse.LslTools.TokensGen,System.Int32,System.String)", + "kind": "constructor", + "name": "Regex", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.TokensGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "p", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Regex.Build(LibreMetaverse.LslTools.Nfa)", + "kind": "method", + "name": "Build", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "nfa", + "type": "LibreMetaverse.LslTools.Nfa", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.Char)", + "kind": "method", + "name": "Match", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ch", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String)", + "kind": "method", + "name": "Match", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String,System.Int32,System.Int32)", + "kind": "method", + "name": "Match", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Regex.Print(System.IO.TextWriter)", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.IO.TextWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Relation", + "namespace": "LibreMetaverse.LslTools", + "name": "Relation", + "signature": "LibreMetaverse.LslTools.Relation", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.LslTools.Relation.Invoke(LibreMetaverse.LslTools.Transition)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Relation.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "Relation", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Relation.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Relation.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Relation.Invoke(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.ResWds", + "namespace": "LibreMetaverse.LslTools", + "name": "ResWds", + "signature": "LibreMetaverse.LslTools.ResWds", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.ResWds.m_upper", + "kind": "field", + "name": "m_upper", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.ResWds.m_wds", + "kind": "field", + "name": "m_wds", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ResWds.#ctor", + "kind": "constructor", + "name": "ResWds", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ResWds.Check(LibreMetaverse.LslTools.Lexer,LibreMetaverse.LslTools.TOKEN@)", + "kind": "method", + "name": "Check", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tok", + "type": "LibreMetaverse.LslTools.TOKEN\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ResWds.New(LibreMetaverse.LslTools.TokensGen,System.String)", + "kind": "method", + "name": "New", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ResWds", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.TokensGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.ResWds.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SCreator", + "namespace": "LibreMetaverse.LslTools", + "name": "SCreator", + "signature": "LibreMetaverse.LslTools.SCreator", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.LslTools.SCreator.Invoke(LibreMetaverse.LslTools.Parser)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.SCreator.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "SCreator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SCreator.BeginInvoke(LibreMetaverse.LslTools.Parser,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SCreator.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SCreator.Invoke(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SEMICOLON", + "namespace": "LibreMetaverse.LslTools", + "name": "SEMICOLON", + "signature": "LibreMetaverse.LslTools.SEMICOLON", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.SEMICOLON.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "SEMICOLON", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SEMICOLON.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SEMICOLON.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SYMBOL", + "namespace": "LibreMetaverse.LslTools", + "name": "SYMBOL", + "signature": "LibreMetaverse.LslTools.SYMBOL", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.SYMBOL.kids", + "kind": "field", + "name": "kids", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SYMBOL.m_dollar", + "kind": "field", + "name": "m_dollar", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SYMBOL.pos", + "kind": "field", + "name": "pos", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SYMBOL.yylx", + "kind": "field", + "name": "yylx", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Lexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SYMBOL.yyps", + "kind": "field", + "name": "yyps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Parser", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "SYMBOL", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "SYMBOL", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.ConcreteSyntaxTree", + "kind": "method", + "name": "ConcreteSyntaxTree", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.IsAction", + "kind": "method", + "name": "IsAction", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.IsCSymbol", + "kind": "method", + "name": "IsCSymbol", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.IsTerminal", + "kind": "method", + "name": "IsTerminal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Matches(System.String)", + "kind": "method", + "name": "Matches", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Pass(LibreMetaverse.LslTools.YyParser,System.Int32,LibreMetaverse.LslTools.ParserEntry@)", + "kind": "method", + "name": "Pass", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.YyParser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snum", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "entry", + "type": "LibreMetaverse.LslTools.ParserEntry\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SYMBOL.op_Implicit(LibreMetaverse.LslTools.SYMBOL)~System.Int32", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.Line", + "kind": "property", + "name": "Line", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.Pos", + "kind": "property", + "name": "Pos", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.Position", + "kind": "property", + "name": "Position", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yyact", + "kind": "property", + "name": "yyact", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.YyParser", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yylval", + "kind": "property", + "name": "yylval", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Serialiser", + "namespace": "LibreMetaverse.LslTools", + "name": "Serialiser", + "signature": "LibreMetaverse.LslTools.Serialiser", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser.#ctor(System.IO.TextWriter)", + "kind": "constructor", + "name": "Serialiser", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ff", + "type": "System.IO.TextWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser.#ctor(System.Int32[])", + "kind": "constructor", + "name": "Serialiser", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bb", + "type": "System.Int32[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser.Deserialise", + "kind": "method", + "name": "Deserialise", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser.Serialise(System.Object)", + "kind": "method", + "name": "Serialise", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser.VersionCheck", + "kind": "method", + "name": "VersionCheck", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser._Read", + "kind": "method", + "name": "_Read", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Serialiser._Write(System.Int32)", + "kind": "method", + "name": "_Write", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "i", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Serialiser.Encode", + "kind": "property", + "name": "Encode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Sfactory", + "namespace": "LibreMetaverse.LslTools", + "name": "Sfactory", + "signature": "LibreMetaverse.LslTools.Sfactory", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Sfactory.#ctor(LibreMetaverse.LslTools.YyParser,System.String,LibreMetaverse.LslTools.SCreator)", + "kind": "constructor", + "name": "Sfactory", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.YyParser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cls_name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cr", + "type": "LibreMetaverse.LslTools.SCreator", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Sfactory.create(System.String,LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "create", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cls_name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SourceLineInfo", + "namespace": "LibreMetaverse.LslTools", + "name": "SourceLineInfo", + "signature": "LibreMetaverse.LslTools.SourceLineInfo", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.charPosition", + "kind": "field", + "name": "charPosition", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.endOfLine", + "kind": "field", + "name": "endOfLine", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.lineNumber", + "kind": "field", + "name": "lineNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.lxr", + "kind": "field", + "name": "lxr", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Lexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.rawCharPosition", + "kind": "field", + "name": "rawCharPosition", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.startOfLine", + "kind": "field", + "name": "startOfLine", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.#ctor(LibreMetaverse.LslTools.Lexer,System.Int32)", + "kind": "constructor", + "name": "SourceLineInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lx", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.#ctor(LibreMetaverse.LslTools.LineManager,System.Int32)", + "kind": "constructor", + "name": "SourceLineInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lm", + "type": "LibreMetaverse.LslTools.LineManager", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.#ctor(System.Int32)", + "kind": "constructor", + "name": "SourceLineInfo", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SourceLineInfo.sourceLine", + "kind": "property", + "name": "sourceLine", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff", + "signature": "LibreMetaverse.LslTools.Stuff", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Stuff.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.Stuff.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff_1", + "signature": "LibreMetaverse.LslTools.Stuff_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Stuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff_2", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff_2", + "signature": "LibreMetaverse.LslTools.Stuff_2", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Stuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff_2.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff_2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff_2_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff_2_1", + "signature": "LibreMetaverse.LslTools.Stuff_2_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Stuff_2", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff_2_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff_2_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff_3", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff_3", + "signature": "LibreMetaverse.LslTools.Stuff_3", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Stuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff_3.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff_3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff_4", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff_4", + "signature": "LibreMetaverse.LslTools.Stuff_4", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Stuff", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff_4.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff_4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Stuff_4_1", + "namespace": "LibreMetaverse.LslTools", + "name": "Stuff_4_1", + "signature": "LibreMetaverse.LslTools.Stuff_4_1", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Stuff_4", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Stuff_4_1.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "Stuff_4_1", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SymbolSet", + "namespace": "LibreMetaverse.LslTools", + "name": "SymbolSet", + "signature": "LibreMetaverse.LslTools.SymbolSet", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolSet.m_next", + "kind": "field", + "name": "m_next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolSet.m_symbols", + "kind": "field", + "name": "m_symbols", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.#ctor(LibreMetaverse.LslTools.SymbolSet)", + "kind": "constructor", + "name": "SymbolSet", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.#ctor(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "constructor", + "name": "SymbolSet", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Add(LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.AddIn(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "AddIn", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.CheckIn(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "CheckIn", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Contains(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.IDictionaryEnumerator", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Resolve", + "kind": "method", + "name": "Resolve", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolSet.op_Addition(LibreMetaverse.LslTools.SymbolSet,LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "t", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SymbolSet.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.SymbolSet.Keys", + "kind": "property", + "name": "Keys", + "static": false, + "visibility": "public", + "type": "System.Collections.ICollection", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SymbolType", + "namespace": "LibreMetaverse.LslTools", + "name": "SymbolType", + "signature": "LibreMetaverse.LslTools.SymbolType", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolType.#ctor(LibreMetaverse.LslTools.SymbolsGen,System.String)", + "kind": "constructor", + "name": "SymbolType", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolType.#ctor(LibreMetaverse.LslTools.SymbolsGen,System.String,System.Boolean)", + "kind": "constructor", + "name": "SymbolType", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "defined", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolType._Find(System.String)", + "kind": "method", + "name": "_Find", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolType", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.SymbolsGen", + "namespace": "LibreMetaverse.LslTools", + "name": "SymbolsGen", + "signature": "LibreMetaverse.LslTools.SymbolsGen", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GenBase", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.action", + "kind": "field", + "name": "action", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.lahead", + "kind": "field", + "name": "lahead", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.m_lalrParser", + "kind": "field", + "name": "m_lalrParser", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.m_lexer", + "kind": "field", + "name": "m_lexer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Lexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.m_symbols", + "kind": "field", + "name": "m_symbols", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.YyParser", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.m_trans", + "kind": "field", + "name": "m_trans", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.pno", + "kind": "field", + "name": "pno", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.prods", + "kind": "field", + "name": "prods", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.stypes", + "kind": "field", + "name": "stypes", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolType", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.AssocType(LibreMetaverse.LslTools.Precedence.PrecType,System.Int32)", + "kind": "method", + "name": "AssocType", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pt", + "type": "LibreMetaverse.LslTools.Precedence.PrecType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "n", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.ClassDefinition(System.String)", + "kind": "method", + "name": "ClassDefinition", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.CopySegment", + "kind": "method", + "name": "CopySegment", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.Declare", + "kind": "method", + "name": "Declare", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.Find(LibreMetaverse.LslTools.CSymbol)", + "kind": "method", + "name": "Find", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sym", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.OldAction(LibreMetaverse.LslTools.ParserOldAction)", + "kind": "method", + "name": "OldAction", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.ParserOldAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.ParserDirective", + "kind": "method", + "name": "ParserDirective", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.SetNamespace", + "kind": "method", + "name": "SetNamespace", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.SetStartSymbol", + "kind": "method", + "name": "SetStartSymbol", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.SimpleAction(LibreMetaverse.LslTools.ParserSimpleAction)", + "kind": "method", + "name": "SimpleAction", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.ParserSimpleAction", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.TCreator", + "namespace": "LibreMetaverse.LslTools", + "name": "TCreator", + "signature": "LibreMetaverse.LslTools.TCreator", + "kind": "delegate", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.LslTools.TCreator.Invoke(LibreMetaverse.LslTools.Lexer)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.TCreator.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "TCreator", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TCreator.BeginInvoke(LibreMetaverse.LslTools.Lexer,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TCreator.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TCreator.Invoke(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.THIS", + "namespace": "LibreMetaverse.LslTools", + "name": "THIS", + "signature": "LibreMetaverse.LslTools.THIS", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.TOKEN", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.THIS.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "THIS", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.THIS.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.THIS.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.TOKEN", + "namespace": "LibreMetaverse.LslTools", + "name": "TOKEN", + "signature": "LibreMetaverse.LslTools.TOKEN", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.SYMBOL", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.#ctor(LibreMetaverse.LslTools.Lexer)", + "kind": "constructor", + "name": "TOKEN", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.#ctor(LibreMetaverse.LslTools.Lexer,System.String)", + "kind": "constructor", + "name": "TOKEN", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.#ctor(LibreMetaverse.LslTools.Parser)", + "kind": "constructor", + "name": "TOKEN", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.IsTerminal", + "kind": "method", + "name": "IsTerminal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.Matches(System.String)", + "kind": "method", + "name": "Matches", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.Pass(LibreMetaverse.LslTools.YyParser,System.Int32,LibreMetaverse.LslTools.ParserEntry@)", + "kind": "method", + "name": "Pass", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.YyParser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "snum", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "entry", + "type": "LibreMetaverse.LslTools.ParserEntry\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TOKEN.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.TOKEN.yyname", + "kind": "property", + "name": "yyname", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.TOKEN.yynum", + "kind": "property", + "name": "yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.TOKEN.yytext", + "kind": "property", + "name": "yytext", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Tfactory", + "namespace": "LibreMetaverse.LslTools", + "name": "Tfactory", + "signature": "LibreMetaverse.LslTools.Tfactory", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.Tfactory.#ctor(LibreMetaverse.LslTools.YyLexer,System.String,LibreMetaverse.LslTools.TCreator)", + "kind": "constructor", + "name": "Tfactory", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.YyLexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cls_name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cr", + "type": "LibreMetaverse.LslTools.TCreator", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Tfactory.create(System.String,LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "create", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cls_name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.TokClassDef", + "namespace": "LibreMetaverse.LslTools", + "name": "TokClassDef", + "signature": "LibreMetaverse.LslTools.TokClassDef", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_implement", + "kind": "field", + "name": "m_implement", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_initialisation", + "kind": "field", + "name": "m_initialisation", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_name", + "kind": "field", + "name": "m_name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_refToken", + "kind": "field", + "name": "m_refToken", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_yynum", + "kind": "field", + "name": "m_yynum", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TokClassDef.#ctor(LibreMetaverse.LslTools.GenBase,System.String,System.String)", + "kind": "constructor", + "name": "TokClassDef", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "gbs", + "type": "LibreMetaverse.LslTools.GenBase", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "bas", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TokClassDef.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "kind": "method", + "name": "Serialise", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "o", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.Serialiser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.TokensGen", + "namespace": "LibreMetaverse.LslTools", + "name": "TokensGen", + "signature": "LibreMetaverse.LslTools.TokensGen", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.GenBase", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.TokensGen.defines", + "kind": "field", + "name": "defines", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.TokensGen.m_tokens", + "kind": "field", + "name": "m_tokens", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.YyLexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.TokensGen.states", + "kind": "field", + "name": "states", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ObjectList", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TokensGen.FixActions(System.String)", + "kind": "method", + "name": "FixActions", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.TokensGen.NewState", + "kind": "method", + "name": "NewState", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.Transition", + "namespace": "LibreMetaverse.LslTools", + "name": "Transition", + "signature": "LibreMetaverse.LslTools.Transition", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.Transition.m_A", + "kind": "field", + "name": "m_A", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Transition.m_next", + "kind": "field", + "name": "m_next", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParserShift", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Transition.m_ps", + "kind": "field", + "name": "m_ps", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParseState", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Transition.m_reduce", + "kind": "field", + "name": "m_reduce", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.Transition.m_tno", + "kind": "field", + "name": "m_tno", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.#ctor(LibreMetaverse.LslTools.ParseState,LibreMetaverse.LslTools.CSymbol)", + "kind": "constructor", + "name": "Transition", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "p", + "type": "LibreMetaverse.LslTools.ParseState", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "a", + "type": "LibreMetaverse.LslTools.CSymbol", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.AddToFollow(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "AddToFollow", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.AddToRead(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "kind": "method", + "name": "AddToRead", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.BuildDR(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildDR", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.BuildIncludes(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildIncludes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.BuildLA(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildLA", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.BuildLookback(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildLookback", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.BuildParseTable(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildParseTable", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.BuildReads(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "BuildReads", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.DR(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "DR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.Final(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "Final", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "t", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.Follow(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "Follow", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.Print(LibreMetaverse.LslTools.SymbolSet,System.String)", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "LibreMetaverse.LslTools.SymbolSet", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.Print0", + "kind": "method", + "name": "Print0", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.Read(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "Read", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.LslTools.SymbolSet", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.includes(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "includes", + "static": true, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.Transition.reads(LibreMetaverse.LslTools.Transition)", + "kind": "method", + "name": "reads", + "static": true, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.LslTools.Transition", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.YyLexer", + "namespace": "LibreMetaverse.LslTools", + "name": "YyLexer", + "signature": "LibreMetaverse.LslTools.YyLexer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.cats", + "kind": "field", + "name": "cats", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.erh", + "kind": "field", + "name": "erh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.m_encoding", + "kind": "field", + "name": "m_encoding", + "static": false, + "visibility": "public", + "type": "System.Text.Encoding", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.m_gencat", + "kind": "field", + "name": "m_gencat", + "static": false, + "visibility": "public", + "type": "System.Globalization.UnicodeCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.reswds", + "kind": "field", + "name": "reswds", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.starts", + "kind": "field", + "name": "starts", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.tokens", + "kind": "field", + "name": "tokens", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.toupper", + "kind": "field", + "name": "toupper", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.types", + "kind": "field", + "name": "types", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyLexer.usingEOF", + "kind": "field", + "name": "usingEOF", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyLexer.#ctor(LibreMetaverse.LslTools.ErrorHandler)", + "kind": "constructor", + "name": "YyLexer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyLexer.EmitDfa(System.IO.TextWriter)", + "kind": "method", + "name": "EmitDfa", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "outFile", + "type": "System.IO.TextWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyLexer.GetDfa", + "kind": "method", + "name": "GetDfa", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyLexer.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.IEnumerator", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyLexer.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "kind": "method", + "name": "OldAction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.TOKEN", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yytext", + "type": "System.String\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reject", + "type": "System.Boolean\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyLexer.UsingCat(System.Globalization.UnicodeCategory)", + "kind": "method", + "name": "UsingCat", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.Charset", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cat", + "type": "System.Globalization.UnicodeCategory", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.YyLexer.InputEncoding", + "kind": "property", + "name": "InputEncoding", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.YyParser", + "namespace": "LibreMetaverse.LslTools", + "name": "YyParser", + "signature": "LibreMetaverse.LslTools.YyParser", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.EOFSymbol", + "kind": "field", + "name": "EOFSymbol", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.Special", + "kind": "field", + "name": "Special", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.arr", + "kind": "field", + "name": "arr", + "static": false, + "visibility": "public", + "type": "System.Int32[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.erh", + "kind": "field", + "name": "erh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.literals", + "kind": "field", + "name": "literals", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.m_accept", + "kind": "field", + "name": "m_accept", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParseState", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.m_concrete", + "kind": "field", + "name": "m_concrete", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.m_startSymbol", + "kind": "field", + "name": "m_startSymbol", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.CSymbol", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.m_states", + "kind": "field", + "name": "m_states", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.symbolInfo", + "kind": "field", + "name": "symbolInfo", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.symbols", + "kind": "field", + "name": "symbols", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.YyParser.types", + "kind": "field", + "name": "types", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.#ctor", + "kind": "constructor", + "name": "YyParser", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.Action(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.SYMBOL,System.Int32)", + "kind": "method", + "name": "Action", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yysym", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yyact", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.ClassInit(LibreMetaverse.LslTools.SymbolsGen)", + "kind": "method", + "name": "ClassInit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.SymbolsGen", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.Emit(System.IO.TextWriter)", + "kind": "method", + "name": "Emit", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "m_outFile", + "type": "System.IO.TextWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.GetEOF(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "GetEOF", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.GetParser(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "GetParser", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "m_lexer", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.GetSymbolInfo(System.String,System.Int32)", + "kind": "method", + "name": "GetSymbolInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.ParsingInfo", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "num", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.PrintTransitions(LibreMetaverse.LslTools.Func,System.String)", + "kind": "method", + "name": "PrintTransitions", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "f", + "type": "LibreMetaverse.LslTools.Func", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.YyParser.Transitions(LibreMetaverse.LslTools.Builder)", + "kind": "method", + "name": "Transitions", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "b", + "type": "LibreMetaverse.LslTools.Builder", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.LslTools.YyParser.StartSymbol", + "kind": "property", + "name": "StartSymbol", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.cs0syntax", + "namespace": "LibreMetaverse.LslTools", + "name": "cs0syntax", + "signature": "LibreMetaverse.LslTools.cs0syntax", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Parser", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Cls", + "kind": "field", + "name": "Cls", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Ctx", + "kind": "field", + "name": "Ctx", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Out", + "kind": "field", + "name": "Out", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Par", + "kind": "field", + "name": "Par", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.LslTools.cs0syntax.defconseen", + "kind": "field", + "name": "defconseen", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.cs0syntax.#ctor", + "kind": "constructor", + "name": "cs0syntax", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.cs0syntax.#ctor(LibreMetaverse.LslTools.YyParser)", + "kind": "constructor", + "name": "cs0syntax", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.YyParser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.cs0syntax.#ctor(LibreMetaverse.LslTools.YyParser,LibreMetaverse.LslTools.ErrorHandler)", + "kind": "constructor", + "name": "cs0syntax", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "syms", + "type": "LibreMetaverse.LslTools.YyParser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "erh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.cs0tokens", + "namespace": "LibreMetaverse.LslTools", + "name": "cs0tokens", + "signature": "LibreMetaverse.LslTools.cs0tokens", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Lexer", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.LslTools.cs0tokens.Out", + "kind": "field", + "name": "Out", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.cs0tokens.#ctor", + "kind": "constructor", + "name": "cs0tokens", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.cs0tokens.#ctor(LibreMetaverse.LslTools.ErrorHandler)", + "kind": "constructor", + "name": "cs0tokens", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.cs0tokens.#ctor(LibreMetaverse.LslTools.YyLexer)", + "kind": "constructor", + "name": "cs0tokens", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "tks", + "type": "LibreMetaverse.LslTools.YyLexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.recoveredError", + "namespace": "LibreMetaverse.LslTools", + "name": "recoveredError", + "signature": "LibreMetaverse.LslTools.recoveredError", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.Error", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.recoveredError.#ctor(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.ParseStackEntry)", + "kind": "constructor", + "name": "recoveredError", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.LslTools.ParseStackEntry", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.recoveredError.ConcreteSyntaxTree", + "kind": "method", + "name": "ConcreteSyntaxTree", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.recoveredError.Print", + "kind": "method", + "name": "Print", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.recoveredError.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.yycs0syntax", + "namespace": "LibreMetaverse.LslTools", + "name": "yycs0syntax", + "signature": "LibreMetaverse.LslTools.yycs0syntax", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.YyParser", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.#ctor", + "kind": "constructor", + "name": "yycs0syntax", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Action(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.SYMBOL,System.Int32)", + "kind": "method", + "name": "Action", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyq", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yysym", + "type": "LibreMetaverse.LslTools.SYMBOL", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yyact", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_3_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_3_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_4_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_4_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_4_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_4_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_5_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_5_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_6_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_6_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_6_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_6_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "BaseCall_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Call_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Call_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Call_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Call_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "ClassBody_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "ClassBody_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "ClassBody_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "ClassBody_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Cons_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Cons_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Cons_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Cons_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_3_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_3_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_4_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_4_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_4_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_4_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_5_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_5_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_6_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_6_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_6_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_6_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "GStuff_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_10_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_10_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_10_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_10_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_11_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_11_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_12_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_12_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_12_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_12_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_13_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_13_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_14_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_14_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_14_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_14_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_15_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_15_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_16_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_16_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_16_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_16_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_17_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_17_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_18_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_18_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_18_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_18_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_19_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_19_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_20_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_20_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_20_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_20_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_21_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_21_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_22_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_22_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_22_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_22_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_23_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_23_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_24_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_24_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_24_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_24_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_3_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_3_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_4_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_4_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_4_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_4_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_5_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_5_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_6_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_6_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_6_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_6_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_7_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_7_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_8_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_8_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_8_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_8_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_9_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_9_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Item_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_3_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_3_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_4_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_4_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_4_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_4_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Name_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_2_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_2_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_2_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_2_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_3_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_3_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_4_1_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_4_1_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_4_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_4_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "Stuff_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.error_factory(LibreMetaverse.LslTools.Parser)", + "kind": "method", + "name": "error_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyp", + "type": "LibreMetaverse.LslTools.Parser", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LslTools.yycs0tokens", + "namespace": "LibreMetaverse.LslTools", + "name": "yycs0tokens", + "signature": "LibreMetaverse.LslTools.yycs0tokens", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.LslTools.YyLexer", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.#ctor(LibreMetaverse.LslTools.ErrorHandler)", + "kind": "constructor", + "name": "yycs0tokens", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eh", + "type": "LibreMetaverse.LslTools.ErrorHandler", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.ANY_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "ANY_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.BASE_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "BASE_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.COLON_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "COLON_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.ID_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "ID_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.LBRACE_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "LBRACE_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.LBRACK_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "LBRACK_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.LPAREN_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "LPAREN_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.NEW_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "NEW_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "kind": "method", + "name": "OldAction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.LslTools.TOKEN", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yym", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yytext", + "type": "System.String\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "action", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "reject", + "type": "System.Boolean\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.RBRACE_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "RBRACE_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.RBRACK_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "RBRACK_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.RPAREN_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "RPAREN_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.SEMICOLON_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "SEMICOLON_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.THIS_factory(LibreMetaverse.LslTools.Lexer)", + "kind": "method", + "name": "THIS_factory", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "yyl", + "type": "LibreMetaverse.LslTools.Lexer", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.PrimMesher", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "66cd7084-c6c6-452d-b8f7-7c1c40e4f02d", + "file": "LibreMetaverse.PrimMesher.dll", + "sha256": "91333d024a9b12f5d87eb4f8210ebb28097ffebb6fabfd59a664e662411e4b0b" + }, + "counts": { + "catalog_types": 17, + "catalog_members": 207, + "metadata_types": 17, + "metadata_members": 207 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.PrimMesher.Coord", + "namespace": "LibreMetaverse.PrimMesher", + "name": "Coord", + "signature": "LibreMetaverse.PrimMesher.Coord", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.Coord.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Coord.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Coord.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.#ctor(System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Coord", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.Cross(LibreMetaverse.PrimMesher.Coord,LibreMetaverse.PrimMesher.Coord)", + "kind": "method", + "name": "Cross", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "c1", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "c2", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.Invert", + "kind": "method", + "name": "Invert", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.Normalize", + "kind": "method", + "name": "Normalize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.op_Addition(LibreMetaverse.PrimMesher.Coord,LibreMetaverse.PrimMesher.Coord)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "a", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.op_Multiply(LibreMetaverse.PrimMesher.Coord,LibreMetaverse.PrimMesher.Coord)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Coord.op_Multiply(LibreMetaverse.PrimMesher.Coord,LibreMetaverse.PrimMesher.Quat)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.Face", + "namespace": "LibreMetaverse.PrimMesher", + "name": "Face", + "signature": "LibreMetaverse.PrimMesher.Face", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.n1", + "kind": "field", + "name": "n1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.n2", + "kind": "field", + "name": "n2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.n3", + "kind": "field", + "name": "n3", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.primFace", + "kind": "field", + "name": "primFace", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.uv1", + "kind": "field", + "name": "uv1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.uv2", + "kind": "field", + "name": "uv2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.uv3", + "kind": "field", + "name": "uv3", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.v1", + "kind": "field", + "name": "v1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.v2", + "kind": "field", + "name": "v2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Face.v3", + "kind": "field", + "name": "v3", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32)", + "kind": "constructor", + "name": "Face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v1", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v2", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v3", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "kind": "constructor", + "name": "Face", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v1", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v2", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v3", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "n1", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "n2", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "n3", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Face.SurfaceNormal(System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord})", + "kind": "method", + "name": "SurfaceNormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "coordList", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.ObjMesh", + "namespace": "LibreMetaverse.PrimMesher", + "name": "ObjMesh", + "signature": "LibreMetaverse.PrimMesher.ObjMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.meshName", + "kind": "field", + "name": "meshName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.numPrimFaces", + "kind": "field", + "name": "numPrimFaces", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.viewerPolygons", + "kind": "field", + "name": "viewerPolygons", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerPolygon\u003E\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.viewerVertices", + "kind": "field", + "name": "viewerVertices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerVertex\u003E\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ObjMesh.#ctor(System.IO.StreamReader)", + "kind": "constructor", + "name": "ObjMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sr", + "type": "System.IO.StreamReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ObjMesh.#ctor(System.String)", + "kind": "constructor", + "name": "ObjMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ObjMesh.GetVertexIndexer", + "kind": "method", + "name": "GetVertexIndexer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.VertexIndexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.Path", + "namespace": "LibreMetaverse.PrimMesher", + "name": "Path", + "signature": "LibreMetaverse.PrimMesher.Path", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.dimpleBegin", + "kind": "field", + "name": "dimpleBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.dimpleEnd", + "kind": "field", + "name": "dimpleEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.holeSizeX", + "kind": "field", + "name": "holeSizeX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.holeSizeY", + "kind": "field", + "name": "holeSizeY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.pathCutBegin", + "kind": "field", + "name": "pathCutBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.pathCutEnd", + "kind": "field", + "name": "pathCutEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.pathNodes", + "kind": "field", + "name": "pathNodes", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.PathNode\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.radius", + "kind": "field", + "name": "radius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.revolutions", + "kind": "field", + "name": "revolutions", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.skew", + "kind": "field", + "name": "skew", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.stepsPerRevolution", + "kind": "field", + "name": "stepsPerRevolution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.taperX", + "kind": "field", + "name": "taperX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.taperY", + "kind": "field", + "name": "taperY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.topShearX", + "kind": "field", + "name": "topShearX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.topShearY", + "kind": "field", + "name": "topShearY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.twistBegin", + "kind": "field", + "name": "twistBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Path.twistEnd", + "kind": "field", + "name": "twistEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Path.#ctor", + "kind": "constructor", + "name": "Path", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Path.Create(LibreMetaverse.PrimMesher.PathType,System.Int32)", + "kind": "method", + "name": "Create", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathType", + "type": "LibreMetaverse.PrimMesher.PathType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "steps", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.PathNode", + "namespace": "LibreMetaverse.PrimMesher", + "name": "PathNode", + "signature": "LibreMetaverse.PrimMesher.PathNode", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathNode.percentOfPath", + "kind": "field", + "name": "percentOfPath", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathNode.position", + "kind": "field", + "name": "position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathNode.rotation", + "kind": "field", + "name": "rotation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Quat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathNode.xScale", + "kind": "field", + "name": "xScale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathNode.yScale", + "kind": "field", + "name": "yScale", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.PathType", + "namespace": "LibreMetaverse.PrimMesher", + "name": "PathType", + "signature": "LibreMetaverse.PrimMesher.PathType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathType.Circular", + "kind": "enum_value", + "name": "Circular", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.PathType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.PathType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathType.Flexible", + "kind": "enum_value", + "name": "Flexible", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.PathType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.PathType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PathType.Linear", + "kind": "enum_value", + "name": "Linear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.PathType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.PathType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.PrimMesh", + "namespace": "LibreMetaverse.PrimMesher", + "name": "PrimMesh", + "signature": "LibreMetaverse.PrimMesher.PrimMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.calcVertexNormals", + "kind": "field", + "name": "calcVertexNormals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.coords", + "kind": "field", + "name": "coords", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.dimpleBegin", + "kind": "field", + "name": "dimpleBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.dimpleEnd", + "kind": "field", + "name": "dimpleEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.errorMessage", + "kind": "field", + "name": "errorMessage", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.faces", + "kind": "field", + "name": "faces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Face\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.holeSizeX", + "kind": "field", + "name": "holeSizeX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.holeSizeY", + "kind": "field", + "name": "holeSizeY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.normals", + "kind": "field", + "name": "normals", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.numPrimFaces", + "kind": "field", + "name": "numPrimFaces", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.pathCutBegin", + "kind": "field", + "name": "pathCutBegin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.pathCutEnd", + "kind": "field", + "name": "pathCutEnd", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.radius", + "kind": "field", + "name": "radius", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.revolutions", + "kind": "field", + "name": "revolutions", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.skew", + "kind": "field", + "name": "skew", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.sphereMode", + "kind": "field", + "name": "sphereMode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.stepsPerRevolution", + "kind": "field", + "name": "stepsPerRevolution", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.taperX", + "kind": "field", + "name": "taperX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.taperY", + "kind": "field", + "name": "taperY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.topShearX", + "kind": "field", + "name": "topShearX", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.topShearY", + "kind": "field", + "name": "topShearY", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.twistBegin", + "kind": "field", + "name": "twistBegin", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.twistEnd", + "kind": "field", + "name": "twistEnd", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.viewerFaces", + "kind": "field", + "name": "viewerFaces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerFace\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.viewerMode", + "kind": "field", + "name": "viewerMode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32)", + "kind": "constructor", + "name": "PrimMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sides", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "profileStart", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "profileEnd", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hollow", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hollowSides", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddPos(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "AddPos", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddRot(LibreMetaverse.PrimMesher.Quat)", + "kind": "method", + "name": "AddRot", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.CalcNormals", + "kind": "method", + "name": "CalcNormals", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.PrimMesh", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.DumpRaw(System.String,System.String,System.String)", + "kind": "method", + "name": "DumpRaw", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "title", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Extrude(LibreMetaverse.PrimMesher.PathType)", + "kind": "method", + "name": "Extrude", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pathType", + "type": "LibreMetaverse.PrimMesher.PathType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.GetVertexIndexer", + "kind": "method", + "name": "GetVertexIndexer", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.VertexIndexer", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.ParamsToDisplayString", + "kind": "method", + "name": "ParamsToDisplayString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Scale(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.SurfaceNormal(System.Int32)", + "kind": "method", + "name": "SurfaceNormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "faceIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.HasHollow", + "kind": "property", + "name": "HasHollow", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.HasProfileCut", + "kind": "property", + "name": "HasProfileCut", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.ProfileHollowFaceNumber", + "kind": "property", + "name": "ProfileHollowFaceNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.ProfileOuterFaceNumber", + "kind": "property", + "name": "ProfileOuterFaceNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.Profile", + "namespace": "LibreMetaverse.PrimMesher", + "name": "Profile", + "signature": "LibreMetaverse.PrimMesher.Profile", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.bottomFaceNumber", + "kind": "field", + "name": "bottomFaceNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.calcVertexNormals", + "kind": "field", + "name": "calcVertexNormals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.coords", + "kind": "field", + "name": "coords", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.cut1CoordIndices", + "kind": "field", + "name": "cut1CoordIndices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.cut2CoordIndices", + "kind": "field", + "name": "cut2CoordIndices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.cutNormal1", + "kind": "field", + "name": "cutNormal1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.cutNormal2", + "kind": "field", + "name": "cutNormal2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.errorMessage", + "kind": "field", + "name": "errorMessage", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.faceNormal", + "kind": "field", + "name": "faceNormal", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.faceNumbers", + "kind": "field", + "name": "faceNumbers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.faceUVs", + "kind": "field", + "name": "faceUVs", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.UVCoord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.faces", + "kind": "field", + "name": "faces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Face\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.hollowCoordIndices", + "kind": "field", + "name": "hollowCoordIndices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.hollowFaceNumber", + "kind": "field", + "name": "hollowFaceNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.numHollowVerts", + "kind": "field", + "name": "numHollowVerts", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.numOuterVerts", + "kind": "field", + "name": "numOuterVerts", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.numPrimFaces", + "kind": "field", + "name": "numPrimFaces", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.outerCoordIndices", + "kind": "field", + "name": "outerCoordIndices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Int32\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.outerFaceNumber", + "kind": "field", + "name": "outerFaceNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.us", + "kind": "field", + "name": "us", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Single\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Profile.vertexNormals", + "kind": "field", + "name": "vertexNormals", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor", + "kind": "constructor", + "name": "Profile", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "Profile", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sides", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "profileStart", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "profileEnd", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hollow", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "hollowSides", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "createFaces", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "calcVertexNormals", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(LibreMetaverse.PrimMesher.Coord)", + "kind": "method", + "name": "AddPos", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "AddPos", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddRot(LibreMetaverse.PrimMesher.Quat)", + "kind": "method", + "name": "AddRot", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddValue2FaceNormalIndices(System.Int32)", + "kind": "method", + "name": "AddValue2FaceNormalIndices", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "num", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddValue2FaceVertexIndices(System.Int32)", + "kind": "method", + "name": "AddValue2FaceVertexIndices", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "num", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Profile", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.Copy(System.Boolean)", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Profile", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "needFaces", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.DumpRaw(System.String,System.String,System.String)", + "kind": "method", + "name": "DumpRaw", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "title", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.FlipNormals", + "kind": "method", + "name": "FlipNormals", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.MakeFaceUVs", + "kind": "method", + "name": "MakeFaceUVs", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Profile.Scale(System.Single,System.Single)", + "kind": "method", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.Quat", + "namespace": "LibreMetaverse.PrimMesher", + "name": "Quat", + "signature": "LibreMetaverse.PrimMesher.Quat", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.Quat.W", + "kind": "field", + "name": "W", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Quat.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Quat.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.Quat.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(LibreMetaverse.PrimMesher.Coord,System.Single)", + "kind": "constructor", + "name": "Quat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "axis", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(System.Single,System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Quat", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Quat.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Quat.Normalize", + "kind": "method", + "name": "Normalize", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Quat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Quat.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.Quat.op_Multiply(LibreMetaverse.PrimMesher.Quat,LibreMetaverse.PrimMesher.Quat)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Quat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.SculptMap", + "namespace": "LibreMetaverse.PrimMesher", + "name": "SculptMap", + "signature": "LibreMetaverse.PrimMesher.SculptMap", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.blueBytes", + "kind": "field", + "name": "blueBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.greenBytes", + "kind": "field", + "name": "greenBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.height", + "kind": "field", + "name": "height", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.redBytes", + "kind": "field", + "name": "redBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.width", + "kind": "field", + "name": "width", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.#ctor", + "kind": "constructor", + "name": "SculptMap", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.#ctor(LibreMetaverse.Imaging.ManagedImage,System.Int32)", + "kind": "constructor", + "name": "SculptMap", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "image", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.ToRows(System.Boolean)", + "kind": "method", + "name": "ToRows", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "mirror", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh", + "namespace": "LibreMetaverse.PrimMesher", + "name": "SculptMesh", + "signature": "LibreMetaverse.PrimMesher.SculptMesh", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.coords", + "kind": "field", + "name": "coords", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.faces", + "kind": "field", + "name": "faces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Face\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.normals", + "kind": "field", + "name": "normals", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.uvs", + "kind": "field", + "name": "uvs", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.UVCoord\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.viewerFaces", + "kind": "field", + "name": "viewerFaces", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerFace\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "kind": "constructor", + "name": "SculptMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sculptImage", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptType", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerMode", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "SculptMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sculptImage", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptType", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerMode", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mirror", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invert", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.PrimMesher.SculptMesh)", + "kind": "constructor", + "name": "SculptMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sm", + "type": "LibreMetaverse.PrimMesher.SculptMesh", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Collections.Generic.List{System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord}},LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Boolean,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "SculptMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "rows", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [] + }, + { + "name": "sculptType", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerMode", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mirror", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invert", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "kind": "constructor", + "name": "SculptMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "zMap", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "xBegin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "xEnd", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yBegin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yEnd", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerMode", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "kind": "constructor", + "name": "SculptMesh", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "codec", + "type": "LibreMetaverse.Imaging.ITextureCodec", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptType", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerMode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mirror", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "invert", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddPos(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "AddPos", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddRot(LibreMetaverse.PrimMesher.Quat)", + "kind": "method", + "name": "AddRot", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.SculptMesh", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.DumpRaw(System.String,System.String,System.String)", + "kind": "method", + "name": "DumpRaw", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "title", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.Scale(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.SculptMeshFromFile(System.String,LibreMetaverse.Imaging.ITextureCodec,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "kind": "method", + "name": "SculptMeshFromFile", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.SculptMesh", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "codec", + "type": "LibreMetaverse.Imaging.ITextureCodec", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptType", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "viewerMode", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "namespace": "LibreMetaverse.PrimMesher", + "name": "SculptType", + "signature": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.SculptType.cylinder", + "kind": "enum_value", + "name": "cylinder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.SculptType.plane", + "kind": "enum_value", + "name": "plane", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.SculptType.sphere", + "kind": "enum_value", + "name": "sphere", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.SculptType.torus", + "kind": "enum_value", + "name": "torus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.UVCoord", + "namespace": "LibreMetaverse.PrimMesher", + "name": "UVCoord", + "signature": "LibreMetaverse.PrimMesher.UVCoord", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.UVCoord.U", + "kind": "field", + "name": "U", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.UVCoord.V", + "kind": "field", + "name": "V", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.UVCoord.#ctor(System.Single,System.Single)", + "kind": "constructor", + "name": "UVCoord", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "u", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.UVCoord.Flip", + "kind": "method", + "name": "Flip", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.UVCoord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.VertexIndexer", + "namespace": "LibreMetaverse.PrimMesher", + "name": "VertexIndexer", + "signature": "LibreMetaverse.PrimMesher.VertexIndexer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.numPrimFaces", + "kind": "field", + "name": "numPrimFaces", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.viewerPolygons", + "kind": "field", + "name": "viewerPolygons", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerPolygon\u003E\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.viewerVertices", + "kind": "field", + "name": "viewerVertices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerVertex\u003E\u003E", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.VertexIndexer.#ctor", + "kind": "constructor", + "name": "VertexIndexer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.VertexIndexer.#ctor(LibreMetaverse.PrimMesher.PrimMesh)", + "kind": "constructor", + "name": "VertexIndexer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primMesh", + "type": "LibreMetaverse.PrimMesher.PrimMesh", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.ViewerFace", + "namespace": "LibreMetaverse.PrimMesher", + "name": "ViewerFace", + "signature": "LibreMetaverse.PrimMesher.ViewerFace", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.coordIndex1", + "kind": "field", + "name": "coordIndex1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.coordIndex2", + "kind": "field", + "name": "coordIndex2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.coordIndex3", + "kind": "field", + "name": "coordIndex3", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.n1", + "kind": "field", + "name": "n1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.n2", + "kind": "field", + "name": "n2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.n3", + "kind": "field", + "name": "n3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.primFaceNumber", + "kind": "field", + "name": "primFaceNumber", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.uv1", + "kind": "field", + "name": "uv1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.UVCoord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.uv2", + "kind": "field", + "name": "uv2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.UVCoord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.uv3", + "kind": "field", + "name": "uv3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.UVCoord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.v1", + "kind": "field", + "name": "v1", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.v2", + "kind": "field", + "name": "v2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.v3", + "kind": "field", + "name": "v3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.#ctor(System.Int32)", + "kind": "constructor", + "name": "ViewerFace", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primFaceNumber", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddPos(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "AddPos", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddRot(LibreMetaverse.PrimMesher.Quat)", + "kind": "method", + "name": "AddRot", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.PrimMesher.Quat", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.CalcSurfaceNormal", + "kind": "method", + "name": "CalcSurfaceNormal", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.Scale(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "Scale", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.ViewerPolygon", + "namespace": "LibreMetaverse.PrimMesher", + "name": "ViewerPolygon", + "signature": "LibreMetaverse.PrimMesher.ViewerPolygon", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerPolygon.v1", + "kind": "field", + "name": "v1", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerPolygon.v2", + "kind": "field", + "name": "v2", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerPolygon.v3", + "kind": "field", + "name": "v3", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerPolygon.#ctor(System.Int32,System.Int32,System.Int32)", + "kind": "constructor", + "name": "ViewerPolygon", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "v1", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v2", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "v3", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimMesher.ViewerVertex", + "namespace": "LibreMetaverse.PrimMesher", + "name": "ViewerVertex", + "signature": "LibreMetaverse.PrimMesher.ViewerVertex", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerVertex.n", + "kind": "field", + "name": "n", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerVertex.uv", + "kind": "field", + "name": "uv", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.UVCoord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimMesher.ViewerVertex.v", + "kind": "field", + "name": "v", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.PrimMesher.Coord", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.PrimMesher.ViewerVertex.#ctor(LibreMetaverse.PrimMesher.Coord,LibreMetaverse.PrimMesher.Coord,LibreMetaverse.PrimMesher.UVCoord)", + "kind": "constructor", + "name": "ViewerVertex", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "coord", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normal", + "type": "LibreMetaverse.PrimMesher.Coord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uv", + "type": "LibreMetaverse.PrimMesher.UVCoord", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.RLV", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "f901a956-97aa-43f7-9be2-6727ff5d6c22", + "file": "LibreMetaverse.RLV.dll", + "sha256": "5744df3a4b2f695d1bb1e9d33e93d989aefa3f7a162811c3dc0d03444d9b3946" + }, + "counts": { + "catalog_types": 28, + "catalog_members": 499, + "metadata_types": 28, + "metadata_members": 499 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.RLV.AttachmentRequest", + "namespace": "LibreMetaverse.RLV", + "name": "AttachmentRequest", + "signature": "LibreMetaverse.RLV.AttachmentRequest", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.#ctor(System.Guid,LibreMetaverse.RLV.RlvAttachmentPoint,System.Boolean)", + "kind": "constructor", + "name": "AttachmentRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "replaceExistingAttachments", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.AttachmentRequest.AttachmentPoint", + "kind": "property", + "name": "AttachmentPoint", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.AttachmentRequest.ItemId", + "kind": "property", + "name": "ItemId", + "static": false, + "visibility": "public", + "type": "System.Guid", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.AttachmentRequest.ReplaceExistingAttachments", + "kind": "property", + "name": "ReplaceExistingAttachments", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.CameraRestrictions", + "namespace": "LibreMetaverse.RLV", + "name": "CameraRestrictions", + "signature": "LibreMetaverse.RLV.CameraRestrictions", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDist", + "kind": "property", + "name": "AvDist", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDistMax", + "kind": "property", + "name": "AvDistMax", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDistMin", + "kind": "property", + "name": "AvDistMin", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawAlphaMax", + "kind": "property", + "name": "DrawAlphaMax", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawAlphaMin", + "kind": "property", + "name": "DrawAlphaMin", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawColor", + "kind": "property", + "name": "DrawColor", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Numerics.Vector3\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawMax", + "kind": "property", + "name": "DrawMax", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawMin", + "kind": "property", + "name": "DrawMin", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.FovMax", + "kind": "property", + "name": "FovMax", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.FovMin", + "kind": "property", + "name": "FovMin", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.IsLocked", + "kind": "property", + "name": "IsLocked", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.Texture", + "kind": "property", + "name": "Texture", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.ZoomMax", + "kind": "property", + "name": "ZoomMax", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.ZoomMin", + "kind": "property", + "name": "ZoomMin", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Single\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.CameraSettings", + "namespace": "LibreMetaverse.RLV", + "name": "CameraSettings", + "signature": "LibreMetaverse.RLV.CameraSettings", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "CameraSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avDistMin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avDistMax", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fovMin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fovMax", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "zoomMin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "currentFov", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraSettings.AvDistMax", + "kind": "property", + "name": "AvDistMax", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraSettings.AvDistMin", + "kind": "property", + "name": "AvDistMin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraSettings.CurrentFov", + "kind": "property", + "name": "CurrentFov", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraSettings.FovMax", + "kind": "property", + "name": "FovMax", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraSettings.FovMin", + "kind": "property", + "name": "FovMin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.CameraSettings.ZoomMin", + "kind": "property", + "name": "ZoomMin", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs", + "namespace": "LibreMetaverse.RLV.EventArguments", + "name": "RestrictionUpdatedEventArgs", + "signature": "LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.#ctor(LibreMetaverse.RLV.RlvRestriction,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "RestrictionUpdatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "restriction", + "type": "LibreMetaverse.RLV.RlvRestriction", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isNew", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isDeleted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.IsDeleted", + "kind": "property", + "name": "IsDeleted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.IsNew", + "kind": "property", + "name": "IsNew", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.Restriction", + "kind": "property", + "name": "Restriction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestriction", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.IRlvActionCallbacks", + "namespace": "LibreMetaverse.RLV", + "name": "IRlvActionCallbacks", + "signature": "LibreMetaverse.RLV.IRlvActionCallbacks", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "kind": "method", + "name": "AdjustHeightAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "distance", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "factor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "delta", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "kind": "method", + "name": "AttachAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemsToAttach", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.AttachmentRequest\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "DetachAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemIds", + "type": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "RemOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemIds", + "type": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendInstantMessageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetUser", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendReplyAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetCamFOVAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fovInRadians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetDebugAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settingValue", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetEnvAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settingValue", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetGroupAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roleName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetGroupAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roleName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetRotAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angleInRadians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitAsync(System.Guid,System.Threading.CancellationToken)", + "kind": "method", + "name": "SitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitGroundAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "SitGroundAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "kind": "method", + "name": "TpToAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "lookat", + "type": "System.Nullable\u003CSystem.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.UnsitAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "UnsitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.IRlvQueryCallbacks", + "namespace": "LibreMetaverse.RLV", + "name": "IRlvQueryCallbacks", + "signature": "LibreMetaverse.RLV.IRlvQueryCallbacks", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.IsSittingAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "IsSittingAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "kind": "method", + "name": "ObjectExistsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetActiveGroupNameAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "ActiveGroupName" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetCameraSettingsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.CameraSettings\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "CameraSettings" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetDebugSettingValueAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "DebugSettingValue" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetEnvironmentSettingValueAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "EnvironmentSettingValue" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetInventoryMapAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.InventoryMap\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "InventoryMap" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetSitIdAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetSitIdAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Guid\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "SitId" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.InventoryMap", + "namespace": "LibreMetaverse.RLV", + "name": "InventoryMap", + "signature": "LibreMetaverse.RLV.InventoryMap", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.#ctor(LibreMetaverse.RLV.RlvSharedFolder,System.Collections.Generic.IReadOnlyCollection{LibreMetaverse.RLV.RlvInventoryItem})", + "kind": "constructor", + "name": "InventoryMap", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "root", + "type": "LibreMetaverse.RLV.RlvSharedFolder", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "externalItems", + "type": "System.Collections.Generic.IReadOnlyCollection\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "kind": "method", + "name": "FindFoldersContaining", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.RLV.RlvSharedFolder\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "limitToOneResult", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachedPrimId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearableType", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByAttachmentPoint(LibreMetaverse.RLV.RlvAttachmentPoint)", + "kind": "method", + "name": "GetItemsByAttachmentPoint", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "attachmentPoint", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsById(System.Guid)", + "kind": "method", + "name": "GetItemsById", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByPrimId(System.Guid)", + "kind": "method", + "name": "GetItemsByPrimId", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByWearableType(LibreMetaverse.RLV.RlvWearableType)", + "kind": "method", + "name": "GetItemsByWearableType", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "wearableType", + "type": "LibreMetaverse.RLV.RlvWearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryBuildPathToFolder(System.Guid,System.String@)", + "kind": "method", + "name": "TryBuildPathToFolder", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "finalPath", + "type": "System.String\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryGetFolderFromPath(System.String,System.Boolean,LibreMetaverse.RLV.RlvSharedFolder@)", + "kind": "method", + "name": "TryGetFolderFromPath", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "skipPrivateFolders", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folder", + "type": "LibreMetaverse.RLV.RlvSharedFolder\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.InventoryMap.ExternalItems", + "kind": "property", + "name": "ExternalItems", + "static": false, + "visibility": "public", + "type": "System.Collections.Immutable.ImmutableDictionary\u003CSystem.Guid, LibreMetaverse.RLV.RlvInventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.InventoryMap.Folders", + "kind": "property", + "name": "Folders", + "static": false, + "visibility": "public", + "type": "System.Collections.Immutable.ImmutableDictionary\u003CSystem.Guid, LibreMetaverse.RLV.RlvSharedFolder\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.InventoryMap.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Collections.Immutable.ImmutableDictionary\u003CSystem.Guid, System.Collections.Immutable.ImmutableList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.InventoryMap.Root", + "kind": "property", + "name": "Root", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvSharedFolder", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.LockedFolderPublic", + "namespace": "LibreMetaverse.RLV", + "name": "LockedFolderPublic", + "signature": "LibreMetaverse.RLV.LockedFolderPublic", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.LockedFolderPublic.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.AttachExceptions", + "kind": "property", + "name": "AttachExceptions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.AttachRestrictions", + "kind": "property", + "name": "AttachRestrictions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.CanAttach", + "kind": "property", + "name": "CanAttach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.CanDetach", + "kind": "property", + "name": "CanDetach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.DetachExceptions", + "kind": "property", + "name": "DetachExceptions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.DetachRestrictions", + "kind": "property", + "name": "DetachRestrictions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.Id", + "kind": "property", + "name": "Id", + "static": false, + "visibility": "public", + "type": "System.Guid", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.IsLocked", + "kind": "property", + "name": "IsLocked", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvActionCallbacksDefault", + "namespace": "LibreMetaverse.RLV", + "name": "RlvActionCallbacksDefault", + "signature": "LibreMetaverse.RLV.RlvActionCallbacksDefault", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.RLV.IRlvActionCallbacks" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.#ctor", + "kind": "constructor", + "name": "RlvActionCallbacksDefault", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "kind": "method", + "name": "AdjustHeightAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "distance", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "factor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "delta", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "kind": "method", + "name": "AttachAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemsToAttach", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.AttachmentRequest\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "DetachAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemIds", + "type": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "RemOutfitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemIds", + "type": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendInstantMessageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "targetUser", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SendReplyAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetCamFOVAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fovInRadians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetDebugAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settingValue", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetEnvAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "settingValue", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetGroupAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roleName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetGroupAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "roleName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "kind": "method", + "name": "SetRotAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "angleInRadians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitAsync(System.Guid,System.Threading.CancellationToken)", + "kind": "method", + "name": "SitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "target", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitGroundAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "SitGroundAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "kind": "method", + "name": "TpToAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "lookat", + "type": "System.Nullable\u003CSystem.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.UnsitAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "UnsitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvAttachmentPoint", + "namespace": "LibreMetaverse.RLV", + "name": "RlvAttachmentPoint", + "signature": "LibreMetaverse.RLV.RlvAttachmentPoint", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.AltLeftEar", + "kind": "enum_value", + "name": "AltLeftEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.AltLeftEye", + "kind": "enum_value", + "name": "AltLeftEye", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.AltRightEar", + "kind": "enum_value", + "name": "AltRightEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.AltRightEye", + "kind": "enum_value", + "name": "AltRightEye", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.AvatarCenter", + "kind": "enum_value", + "name": "AvatarCenter", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Chest", + "kind": "enum_value", + "name": "Chest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Chin", + "kind": "enum_value", + "name": "Chin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Groin", + "kind": "enum_value", + "name": "Groin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDBottom", + "kind": "enum_value", + "name": "HUDBottom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDBottomLeft", + "kind": "enum_value", + "name": "HUDBottomLeft", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDBottomRight", + "kind": "enum_value", + "name": "HUDBottomRight", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDCenter", + "kind": "enum_value", + "name": "HUDCenter", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDCenter2", + "kind": "enum_value", + "name": "HUDCenter2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDTop", + "kind": "enum_value", + "name": "HUDTop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDTopLeft", + "kind": "enum_value", + "name": "HUDTopLeft", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.HUDTopRight", + "kind": "enum_value", + "name": "HUDTopRight", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Jaw", + "kind": "enum_value", + "name": "Jaw", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftEar", + "kind": "enum_value", + "name": "LeftEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftEyeball", + "kind": "enum_value", + "name": "LeftEyeball", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftFoot", + "kind": "enum_value", + "name": "LeftFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftForearm", + "kind": "enum_value", + "name": "LeftForearm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftHand", + "kind": "enum_value", + "name": "LeftHand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftHandRing", + "kind": "enum_value", + "name": "LeftHandRing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftHindFoot", + "kind": "enum_value", + "name": "LeftHindFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftHip", + "kind": "enum_value", + "name": "LeftHip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftLowerLeg", + "kind": "enum_value", + "name": "LeftLowerLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftPec", + "kind": "enum_value", + "name": "LeftPec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftShoulder", + "kind": "enum_value", + "name": "LeftShoulder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftUpperArm", + "kind": "enum_value", + "name": "LeftUpperArm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftUpperLeg", + "kind": "enum_value", + "name": "LeftUpperLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.LeftWing", + "kind": "enum_value", + "name": "LeftWing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Mouth", + "kind": "enum_value", + "name": "Mouth", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Neck", + "kind": "enum_value", + "name": "Neck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Nose", + "kind": "enum_value", + "name": "Nose", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Pelvis", + "kind": "enum_value", + "name": "Pelvis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightEar", + "kind": "enum_value", + "name": "RightEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightEyeball", + "kind": "enum_value", + "name": "RightEyeball", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightFoot", + "kind": "enum_value", + "name": "RightFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightForearm", + "kind": "enum_value", + "name": "RightForearm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightHand", + "kind": "enum_value", + "name": "RightHand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightHandRing", + "kind": "enum_value", + "name": "RightHandRing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightHindFoot", + "kind": "enum_value", + "name": "RightHindFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightHip", + "kind": "enum_value", + "name": "RightHip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightLowerLeg", + "kind": "enum_value", + "name": "RightLowerLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightPec", + "kind": "enum_value", + "name": "RightPec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightShoulder", + "kind": "enum_value", + "name": "RightShoulder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightUpperArm", + "kind": "enum_value", + "name": "RightUpperArm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightUpperLeg", + "kind": "enum_value", + "name": "RightUpperLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.RightWing", + "kind": "enum_value", + "name": "RightWing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Skull", + "kind": "enum_value", + "name": "Skull", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Spine", + "kind": "enum_value", + "name": "Spine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Stomach", + "kind": "enum_value", + "name": "Stomach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.TailBase", + "kind": "enum_value", + "name": "TailBase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.TailTip", + "kind": "enum_value", + "name": "TailTip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvAttachmentPoint.Tongue", + "kind": "enum_value", + "name": "Tongue", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvBlacklist", + "namespace": "LibreMetaverse.RLV", + "name": "RlvBlacklist", + "signature": "LibreMetaverse.RLV.RlvBlacklist", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.RLV.IBlacklistProvider" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.BlacklistBehavior(System.String)", + "kind": "method", + "name": "BlacklistBehavior", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "behavior", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.GetBlacklist", + "kind": "method", + "name": "GetBlacklist", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyCollection\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.IsBlacklisted(System.String)", + "kind": "method", + "name": "IsBlacklisted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "behavior", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.UnBlacklistBehavior(System.String)", + "kind": "method", + "name": "UnBlacklistBehavior", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "behavior", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvCallbacksDefault", + "namespace": "LibreMetaverse.RLV", + "name": "RlvCallbacksDefault", + "signature": "LibreMetaverse.RLV.RlvCallbacksDefault", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.RLV.IRlvQueryCallbacks" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.#ctor", + "kind": "constructor", + "name": "RlvCallbacksDefault", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.IsSittingAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "IsSittingAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "kind": "method", + "name": "ObjectExistsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetActiveGroupNameAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "ActiveGroupName" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetCameraSettingsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.CameraSettings\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "CameraSettings" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetDebugSettingValueAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "DebugSettingValue" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetEnvironmentSettingValueAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "EnvironmentSettingValue" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "settingName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetInventoryMapAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.InventoryMap\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "InventoryMap" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSharedFolderAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetSharedFolderAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.RlvSharedFolder\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "2" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "SharedFolder" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSitIdAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "TryGetSitIdAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Guid\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "Success" + }, + { + "type": "System.String", + "value": "SitId" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvCommandProcessor", + "namespace": "LibreMetaverse.RLV", + "name": "RlvCommandProcessor", + "signature": "LibreMetaverse.RLV.RlvCommandProcessor", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvCommon", + "namespace": "LibreMetaverse.RLV", + "name": "RlvCommon", + "signature": "LibreMetaverse.RLV.RlvCommon", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvCommon.TryGetAttachmentPointFromItemName(System.String,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint}@)", + "kind": "method", + "name": "TryGetAttachmentPointFromItemName", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvGestureState", + "namespace": "LibreMetaverse.RLV", + "name": "RlvGestureState", + "signature": "LibreMetaverse.RLV.RlvGestureState", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvGestureState.Active", + "kind": "enum_value", + "name": "Active", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGestureState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGestureState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGestureState.Inactive", + "kind": "enum_value", + "name": "Inactive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGestureState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGestureState", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvGetDebugType", + "namespace": "LibreMetaverse.RLV", + "name": "RlvGetDebugType", + "signature": "LibreMetaverse.RLV.RlvGetDebugType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetDebugType.AvatarSex", + "kind": "enum_value", + "name": "AvatarSex", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetDebugType.RenderResolutionDivisor", + "kind": "enum_value", + "name": "RenderResolutionDivisor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetDebugType.RestrainedLoveForbidGiveToRLV", + "kind": "enum_value", + "name": "RestrainedLoveForbidGiveToRLV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetDebugType.RestrainedLoveNoSetEnv", + "kind": "enum_value", + "name": "RestrainedLoveNoSetEnv", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetDebugType.WindLightUseAtmosShaders", + "kind": "enum_value", + "name": "WindLightUseAtmosShaders", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetDebugType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvGetEnvType", + "namespace": "LibreMetaverse.RLV", + "name": "RlvGetEnvType", + "signature": "LibreMetaverse.RLV.RlvGetEnvType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.Ambient", + "kind": "enum_value", + "name": "Ambient", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.AmbientB", + "kind": "enum_value", + "name": "AmbientB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.AmbientG", + "kind": "enum_value", + "name": "AmbientG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.AmbientI", + "kind": "enum_value", + "name": "AmbientI", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.AmbientR", + "kind": "enum_value", + "name": "AmbientR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.Asset", + "kind": "enum_value", + "name": "Asset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueDensity", + "kind": "enum_value", + "name": "BlueDensity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueDensityB", + "kind": "enum_value", + "name": "BlueDensityB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueDensityG", + "kind": "enum_value", + "name": "BlueDensityG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueDensityI", + "kind": "enum_value", + "name": "BlueDensityI", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueDensityR", + "kind": "enum_value", + "name": "BlueDensityR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueHorizon", + "kind": "enum_value", + "name": "BlueHorizon", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueHorizonB", + "kind": "enum_value", + "name": "BlueHorizonB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueHorizonG", + "kind": "enum_value", + "name": "BlueHorizonG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueHorizonI", + "kind": "enum_value", + "name": "BlueHorizonI", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.BlueHorizonR", + "kind": "enum_value", + "name": "BlueHorizonR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.Cloud", + "kind": "enum_value", + "name": "Cloud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudColor", + "kind": "enum_value", + "name": "CloudColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudColorB", + "kind": "enum_value", + "name": "CloudColorB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudColorG", + "kind": "enum_value", + "name": "CloudColorG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudColorI", + "kind": "enum_value", + "name": "CloudColorI", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudColorR", + "kind": "enum_value", + "name": "CloudColorR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudCoverage", + "kind": "enum_value", + "name": "CloudCoverage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudD", + "kind": "enum_value", + "name": "CloudD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudDetail", + "kind": "enum_value", + "name": "CloudDetail", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudDetailD", + "kind": "enum_value", + "name": "CloudDetailD", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudDetailX", + "kind": "enum_value", + "name": "CloudDetailX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudDetailY", + "kind": "enum_value", + "name": "CloudDetailY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudImage", + "kind": "enum_value", + "name": "CloudImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudScale", + "kind": "enum_value", + "name": "CloudScale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudScroll", + "kind": "enum_value", + "name": "CloudScroll", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudScrollX", + "kind": "enum_value", + "name": "CloudScrollX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudScrollY", + "kind": "enum_value", + "name": "CloudScrollY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudVariance", + "kind": "enum_value", + "name": "CloudVariance", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudX", + "kind": "enum_value", + "name": "CloudX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.CloudY", + "kind": "enum_value", + "name": "CloudY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.Daytime", + "kind": "enum_value", + "name": "Daytime", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.DensityMultiplier", + "kind": "enum_value", + "name": "DensityMultiplier", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.DistanceMultiplier", + "kind": "enum_value", + "name": "DistanceMultiplier", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.DropletRadius", + "kind": "enum_value", + "name": "DropletRadius", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.EastAngle", + "kind": "enum_value", + "name": "EastAngle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.HazeDensity", + "kind": "enum_value", + "name": "HazeDensity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.HazeHorizon", + "kind": "enum_value", + "name": "HazeHorizon", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.IceLevel", + "kind": "enum_value", + "name": "IceLevel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MaxAltitude", + "kind": "enum_value", + "name": "MaxAltitude", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MoistureLevel", + "kind": "enum_value", + "name": "MoistureLevel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MoonAzim", + "kind": "enum_value", + "name": "MoonAzim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MoonElev", + "kind": "enum_value", + "name": "MoonElev", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MoonImage", + "kind": "enum_value", + "name": "MoonImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MoonNBrightness", + "kind": "enum_value", + "name": "MoonNBrightness", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.MoonScale", + "kind": "enum_value", + "name": "MoonScale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.Preset", + "kind": "enum_value", + "name": "Preset", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SceneGamma", + "kind": "enum_value", + "name": "SceneGamma", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.StarBrightness", + "kind": "enum_value", + "name": "StarBrightness", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunAzim", + "kind": "enum_value", + "name": "SunAzim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunElev", + "kind": "enum_value", + "name": "SunElev", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunGlowFocus", + "kind": "enum_value", + "name": "SunGlowFocus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunGlowSize", + "kind": "enum_value", + "name": "SunGlowSize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunImage", + "kind": "enum_value", + "name": "SunImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunMoonColor", + "kind": "enum_value", + "name": "SunMoonColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunMoonColorB", + "kind": "enum_value", + "name": "SunMoonColorB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunMoonColorG", + "kind": "enum_value", + "name": "SunMoonColorG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunMoonColorI", + "kind": "enum_value", + "name": "SunMoonColorI", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunMoonColorR", + "kind": "enum_value", + "name": "SunMoonColorR", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunMoonPosition", + "kind": "enum_value", + "name": "SunMoonPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvGetEnvType.SunScale", + "kind": "enum_value", + "name": "SunScale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvGetEnvType", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvInventoryItem", + "namespace": "LibreMetaverse.RLV", + "name": "RlvInventoryItem", + "signature": "LibreMetaverse.RLV.RlvInventoryItem", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "kind": "constructor", + "name": "RlvInventoryItem", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isLink", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "externalFolderId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachedTo", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachedPrimId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wornOn", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gestureState", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvGestureState\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.AttachedPrimId", + "kind": "property", + "name": "AttachedPrimId", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.AttachedTo", + "kind": "property", + "name": "AttachedTo", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.Folder", + "kind": "property", + "name": "Folder", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvSharedFolder", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.FolderId", + "kind": "property", + "name": "FolderId", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.GestureState", + "kind": "property", + "name": "GestureState", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvGestureState\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.Id", + "kind": "property", + "name": "Id", + "static": false, + "visibility": "public", + "type": "System.Guid", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.IsLink", + "kind": "property", + "name": "IsLink", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.WornOn", + "kind": "property", + "name": "WornOn", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService", + "namespace": "LibreMetaverse.RLV", + "name": "RlvPermissionsService", + "signature": "LibreMetaverse.RLV.RlvPermissionsService", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAllowIdle", + "kind": "method", + "name": "CanAllowIdle", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAlwaysRun", + "kind": "method", + "name": "CanAlwaysRun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(LibreMetaverse.RLV.RlvInventoryItem,System.Boolean)", + "kind": "method", + "name": "CanAttach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.RLV.RlvInventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "kind": "method", + "name": "CanAttach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectFolderId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearableType", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChat(System.Int32,System.String)", + "kind": "method", + "name": "CanChat", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channel", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChatNormal", + "kind": "method", + "name": "CanChatNormal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChatShout", + "kind": "method", + "name": "CanChatShout", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChatWhisper", + "kind": "method", + "name": "CanChatWhisper", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDefaultWear", + "kind": "method", + "name": "CanDefaultWear", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(LibreMetaverse.RLV.RlvInventoryItem)", + "kind": "method", + "name": "CanDetach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.RLV.RlvInventoryItem", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "kind": "method", + "name": "CanDetach", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "folderId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearableType", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanEdit(LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation,System.Nullable{System.Guid})", + "kind": "method", + "name": "CanEdit", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectLocation", + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanEmote", + "kind": "method", + "name": "CanEmote", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanFly", + "kind": "method", + "name": "CanFly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanInteract", + "kind": "method", + "name": "CanInteract", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanJump", + "kind": "method", + "name": "CanJump", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveChat(System.String,System.Guid)", + "kind": "method", + "name": "CanReceiveChat", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "userId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveIM(System.String,System.Nullable{System.Guid},System.String)", + "kind": "method", + "name": "CanReceiveIM", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanRez", + "kind": "method", + "name": "CanRez", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendChat", + "kind": "method", + "name": "CanSendChat", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendGesture", + "kind": "method", + "name": "CanSendGesture", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendIM(System.String,System.Nullable{System.Guid},System.String)", + "kind": "method", + "name": "CanSendIM", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "groupName", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSetDebug", + "kind": "method", + "name": "CanSetDebug", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSetEnv", + "kind": "method", + "name": "CanSetEnv", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSetGroup", + "kind": "method", + "name": "CanSetGroup", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShare(System.Nullable{System.Guid})", + "kind": "method", + "name": "CanShare", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowHoverText(LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation,System.Nullable{System.Guid})", + "kind": "method", + "name": "CanShowHoverText", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "location", + "type": "LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowInv", + "kind": "method", + "name": "CanShowInv", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowLoc", + "kind": "method", + "name": "CanShowLoc", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowMiniMap", + "kind": "method", + "name": "CanShowMiniMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNameTags(System.Nullable{System.Guid})", + "kind": "method", + "name": "CanShowNameTags", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNames(System.Nullable{System.Guid})", + "kind": "method", + "name": "CanShowNames", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNearby", + "kind": "method", + "name": "CanShowNearby", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowWorldMap", + "kind": "method", + "name": "CanShowWorldMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSit", + "kind": "method", + "name": "CanSit", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSitTp(System.Single@)", + "kind": "method", + "name": "CanSitTp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxDistance", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanStandTp", + "kind": "method", + "name": "CanStandTp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanStartIM(System.Guid)", + "kind": "method", + "name": "CanStartIM", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTPLure(System.Nullable{System.Guid})", + "kind": "method", + "name": "CanTPLure", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTempRun", + "kind": "method", + "name": "CanTempRun", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "kind": "method", + "name": "CanTouch", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "location", + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "distance", + "type": "System.Nullable\u003CSystem.Single\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLm", + "kind": "method", + "name": "CanTpLm", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLoc", + "kind": "method", + "name": "CanTpLoc", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLocal(System.Single@)", + "kind": "method", + "name": "CanTpLocal", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxDistance", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpRequest(System.Nullable{System.Guid})", + "kind": "method", + "name": "CanTpRequest", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanUnsit", + "kind": "method", + "name": "CanUnsit", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanViewNote", + "kind": "method", + "name": "CanViewNote", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanViewScript", + "kind": "method", + "name": "CanViewScript", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanViewTexture", + "kind": "method", + "name": "CanViewTexture", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.GetCameraRestrictions", + "kind": "method", + "name": "GetCameraRestrictions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.CameraRestrictions", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptPermissions", + "kind": "method", + "name": "IsAutoAcceptPermissions", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTp(System.Nullable{System.Guid})", + "kind": "method", + "name": "IsAutoAcceptTp", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Guid\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTpRequest(System.Nullable{System.Guid})", + "kind": "method", + "name": "IsAutoAcceptTpRequest", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "userId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Guid\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoDenyPermissions", + "kind": "method", + "name": "IsAutoDenyPermissions", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsPermissive", + "kind": "method", + "name": "IsPermissive", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetMaxFarTouchDistance(System.Single@)", + "kind": "method", + "name": "TryGetMaxFarTouchDistance", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxDistance", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirChatChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "kind": "method", + "name": "TryGetRedirChatChannels", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channels", + "type": "System.Collections.Generic.IReadOnlyList\u003CSystem.Int32\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirEmoteChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "kind": "method", + "name": "TryGetRedirEmoteChannels", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "channels", + "type": "System.Collections.Generic.IReadOnlyList\u003CSystem.Int32\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "namespace": "LibreMetaverse.RLV", + "name": "HoverTextLocation", + "signature": "LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation.Hud", + "kind": "enum_value", + "name": "Hud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation.World", + "kind": "enum_value", + "name": "World", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "namespace": "LibreMetaverse.RLV", + "name": "ObjectLocation", + "signature": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation.Attached", + "kind": "enum_value", + "name": "Attached", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation.Hud", + "kind": "enum_value", + "name": "Hud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation.RezzedInWorld", + "kind": "enum_value", + "name": "RezzedInWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "namespace": "LibreMetaverse.RLV", + "name": "TouchLocation", + "signature": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation.AttachedOther", + "kind": "enum_value", + "name": "AttachedOther", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation.AttachedSelf", + "kind": "enum_value", + "name": "AttachedSelf", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation.Hud", + "kind": "enum_value", + "name": "Hud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation.RezzedInWorld", + "kind": "enum_value", + "name": "RezzedInWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvRestriction", + "namespace": "LibreMetaverse.RLV", + "name": "RlvRestriction", + "signature": "LibreMetaverse.RLV.RlvRestriction", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestriction.#ctor(LibreMetaverse.RLV.RlvRestrictionType,System.Guid,System.String,System.Collections.Generic.ICollection{System.Object})", + "kind": "constructor", + "name": "RlvRestriction", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "behavior", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sender", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "senderName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "args", + "type": "System.Collections.Generic.ICollection\u003CSystem.Object\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestriction.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestriction.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestriction.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvRestriction.Args", + "kind": "property", + "name": "Args", + "static": false, + "visibility": "public", + "type": "System.Collections.Immutable.ImmutableList\u003CSystem.Object\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvRestriction.Behavior", + "kind": "property", + "name": "Behavior", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvRestriction.IsException", + "kind": "property", + "name": "IsException", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvRestriction.OriginalBehavior", + "kind": "property", + "name": "OriginalBehavior", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvRestriction.Sender", + "kind": "property", + "name": "Sender", + "static": false, + "visibility": "public", + "type": "System.Guid", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvRestriction.SenderName", + "kind": "property", + "name": "SenderName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvRestrictionManager", + "namespace": "LibreMetaverse.RLV", + "name": "RlvRestrictionManager", + "signature": "LibreMetaverse.RLV.RlvRestrictionManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.RLV.IRestrictionProvider" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.RLV.RlvRestrictionManager.RestrictionUpdated", + "kind": "event", + "name": "RestrictionUpdated", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.FindRestrictions(System.String,System.Nullable{System.Guid})", + "kind": "method", + "name": "FindRestrictions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "behaviorNameFilter", + "type": "System.String", + "passing": "value", + "optional": true, + "default": { + "type": "System.String", + "value": "" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "senderFilter", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": true, + "default": { + "type": "System.Nullable\u003CSystem.Guid\u003E" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetLockedFolders", + "kind": "method", + "name": "GetLockedFolders", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Guid, LibreMetaverse.RLV.LockedFolderPublic\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetRestrictionsByType(LibreMetaverse.RLV.RlvRestrictionType)", + "kind": "method", + "name": "GetRestrictionsByType", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "restrictionType", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetTrackedPrimIds", + "kind": "method", + "name": "GetTrackedPrimIds", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Guid\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.RemoveRestrictionsForObjectsAsync(System.Collections.Generic.IEnumerable{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "RemoveRestrictionsForObjectsAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primIds", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvRestrictionManager.\u003CRemoveRestrictionsForObjectsAsync\u003Ed__16" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.TryGetLockedFolder(System.Guid,LibreMetaverse.RLV.LockedFolderPublic@)", + "kind": "method", + "name": "TryGetLockedFolder", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lockedFolder", + "type": "LibreMetaverse.RLV.LockedFolderPublic\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.NotNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "True" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvRestrictionType", + "namespace": "LibreMetaverse.RLV", + "name": "RlvRestrictionType", + "signature": "LibreMetaverse.RLV.RlvRestrictionType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AcceptPermission", + "kind": "enum_value", + "name": "AcceptPermission", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "79" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AcceptTp", + "kind": "enum_value", + "name": "AcceptTp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "56" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AcceptTpRequest", + "kind": "enum_value", + "name": "AcceptTpRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "57" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AddAttach", + "kind": "enum_value", + "name": "AddAttach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "74" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AddOutfit", + "kind": "enum_value", + "name": "AddOutfit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "77" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AllowIdle", + "kind": "enum_value", + "name": "AllowIdle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "118" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AlwaysRun", + "kind": "enum_value", + "name": "AlwaysRun", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AttachAllThis", + "kind": "enum_value", + "name": "AttachAllThis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "88" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AttachAllThisExcept", + "kind": "enum_value", + "name": "AttachAllThisExcept", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "92" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AttachThis", + "kind": "enum_value", + "name": "AttachThis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "87" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.AttachThisExcept", + "kind": "enum_value", + "name": "AttachThisExcept", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "91" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamAvDist", + "kind": "enum_value", + "name": "CamAvDist", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDistMax", + "kind": "enum_value", + "name": "CamDistMax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDistMin", + "kind": "enum_value", + "name": "CamDistMin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDrawAlphaMax", + "kind": "enum_value", + "name": "CamDrawAlphaMax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDrawAlphaMin", + "kind": "enum_value", + "name": "CamDrawAlphaMin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDrawColor", + "kind": "enum_value", + "name": "CamDrawColor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDrawMax", + "kind": "enum_value", + "name": "CamDrawMax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamDrawMin", + "kind": "enum_value", + "name": "CamDrawMin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamTextures", + "kind": "enum_value", + "name": "CamTextures", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamUnlock", + "kind": "enum_value", + "name": "CamUnlock", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamZoomMax", + "kind": "enum_value", + "name": "CamZoomMax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.CamZoomMin", + "kind": "enum_value", + "name": "CamZoomMin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ChatNormal", + "kind": "enum_value", + "name": "ChatNormal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "26" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ChatShout", + "kind": "enum_value", + "name": "ChatShout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "25" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ChatWhisper", + "kind": "enum_value", + "name": "ChatWhisper", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "27" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.DefaultWear", + "kind": "enum_value", + "name": "DefaultWear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "76" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.DenyPermission", + "kind": "enum_value", + "name": "DenyPermission", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "80" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Detach", + "kind": "enum_value", + "name": "Detach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "73" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.DetachAllThis", + "kind": "enum_value", + "name": "DetachAllThis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "86" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.DetachAllThisExcept", + "kind": "enum_value", + "name": "DetachAllThisExcept", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "90" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.DetachThis", + "kind": "enum_value", + "name": "DetachThis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "85" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.DetachThisExcept", + "kind": "enum_value", + "name": "DetachThisExcept", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "89" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Edit", + "kind": "enum_value", + "name": "Edit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.EditAttach", + "kind": "enum_value", + "name": "EditAttach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "68" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.EditObj", + "kind": "enum_value", + "name": "EditObj", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "66" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.EditWorld", + "kind": "enum_value", + "name": "EditWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "67" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Emote", + "kind": "enum_value", + "name": "Emote", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "33" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.FarTouch", + "kind": "enum_value", + "name": "FarTouch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "93" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Fly", + "kind": "enum_value", + "name": "Fly", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Interact", + "kind": "enum_value", + "name": "Interact", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "103" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Jump", + "kind": "enum_value", + "name": "Jump", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Notify", + "kind": "enum_value", + "name": "Notify", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Permissive", + "kind": "enum_value", + "name": "Permissive", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvChat", + "kind": "enum_value", + "name": "RecvChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "29" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvChatFrom", + "kind": "enum_value", + "name": "RecvChatFrom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "31" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvChatSec", + "kind": "enum_value", + "name": "RecvChatSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "30" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvEmote", + "kind": "enum_value", + "name": "RecvEmote", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "35" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvEmoteFrom", + "kind": "enum_value", + "name": "RecvEmoteFrom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "36" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvEmoteSec", + "kind": "enum_value", + "name": "RecvEmoteSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "37" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvIm", + "kind": "enum_value", + "name": "RecvIm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "46" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvImFrom", + "kind": "enum_value", + "name": "RecvImFrom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "48" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RecvImSec", + "kind": "enum_value", + "name": "RecvImSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "47" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RedirChat", + "kind": "enum_value", + "name": "RedirChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "28" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RedirEmote", + "kind": "enum_value", + "name": "RedirEmote", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "34" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RemAttach", + "kind": "enum_value", + "name": "RemAttach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "75" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.RemOutfit", + "kind": "enum_value", + "name": "RemOutfit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "78" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Rez", + "kind": "enum_value", + "name": "Rez", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "65" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendChannel", + "kind": "enum_value", + "name": "SendChannel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "38" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendChannelExcept", + "kind": "enum_value", + "name": "SendChannelExcept", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "40" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendChannelSec", + "kind": "enum_value", + "name": "SendChannelSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "39" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendChat", + "kind": "enum_value", + "name": "SendChat", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendGesture", + "kind": "enum_value", + "name": "SendGesture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendIm", + "kind": "enum_value", + "name": "SendIm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "41" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendImSec", + "kind": "enum_value", + "name": "SendImSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "42" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SendImTo", + "kind": "enum_value", + "name": "SendImTo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "43" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetCamAvDistMax", + "kind": "enum_value", + "name": "SetCamAvDistMax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetCamAvDistMin", + "kind": "enum_value", + "name": "SetCamAvDistMin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetCamFovMax", + "kind": "enum_value", + "name": "SetCamFovMax", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetCamFovMin", + "kind": "enum_value", + "name": "SetCamFovMin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetCamTextures", + "kind": "enum_value", + "name": "SetCamTextures", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetCamUnlock", + "kind": "enum_value", + "name": "SetCamUnlock", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetDebug", + "kind": "enum_value", + "name": "SetDebug", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "116" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetEnv", + "kind": "enum_value", + "name": "SetEnv", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "117" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SetGroup", + "kind": "enum_value", + "name": "SetGroup", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "115" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Share", + "kind": "enum_value", + "name": "Share", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "69" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShareSec", + "kind": "enum_value", + "name": "ShareSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "70" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SharedUnwear", + "kind": "enum_value", + "name": "SharedUnwear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "84" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SharedWear", + "kind": "enum_value", + "name": "SharedWear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "83" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowHoverText", + "kind": "enum_value", + "name": "ShowHoverText", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "112" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowHoverTextAll", + "kind": "enum_value", + "name": "ShowHoverTextAll", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "111" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowHoverTextHud", + "kind": "enum_value", + "name": "ShowHoverTextHud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "113" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowHoverTextWorld", + "kind": "enum_value", + "name": "ShowHoverTextWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "114" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowInv", + "kind": "enum_value", + "name": "ShowInv", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "60" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowLoc", + "kind": "enum_value", + "name": "ShowLoc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "106" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowMiniMap", + "kind": "enum_value", + "name": "ShowMiniMap", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "105" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowNameTags", + "kind": "enum_value", + "name": "ShowNameTags", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "109" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowNames", + "kind": "enum_value", + "name": "ShowNames", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "107" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowNamesSec", + "kind": "enum_value", + "name": "ShowNamesSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "108" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowNearby", + "kind": "enum_value", + "name": "ShowNearby", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "110" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ShowWorldMap", + "kind": "enum_value", + "name": "ShowWorldMap", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "104" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Sit", + "kind": "enum_value", + "name": "Sit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "72" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.SitTp", + "kind": "enum_value", + "name": "SitTp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "54" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.StandTp", + "kind": "enum_value", + "name": "StandTp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "55" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.StartIm", + "kind": "enum_value", + "name": "StartIm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "44" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.StartImTo", + "kind": "enum_value", + "name": "StartImTo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "45" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TempRun", + "kind": "enum_value", + "name": "TempRun", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchAll", + "kind": "enum_value", + "name": "TouchAll", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "95" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchAttach", + "kind": "enum_value", + "name": "TouchAttach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "99" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchAttachOther", + "kind": "enum_value", + "name": "TouchAttachOther", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "101" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchAttachSelf", + "kind": "enum_value", + "name": "TouchAttachSelf", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "100" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchFar", + "kind": "enum_value", + "name": "TouchFar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "94" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchHud", + "kind": "enum_value", + "name": "TouchHud", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "102" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchMe", + "kind": "enum_value", + "name": "TouchMe", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "98" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchThis", + "kind": "enum_value", + "name": "TouchThis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "97" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TouchWorld", + "kind": "enum_value", + "name": "TouchWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "96" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpLm", + "kind": "enum_value", + "name": "TpLm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "50" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpLoc", + "kind": "enum_value", + "name": "TpLoc", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "51" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpLocal", + "kind": "enum_value", + "name": "TpLocal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "49" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpLure", + "kind": "enum_value", + "name": "TpLure", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "52" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpLureSec", + "kind": "enum_value", + "name": "TpLureSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "53" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpRequest", + "kind": "enum_value", + "name": "TpRequest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "58" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.TpRequestSec", + "kind": "enum_value", + "name": "TpRequestSec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "59" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.UnsharedUnwear", + "kind": "enum_value", + "name": "UnsharedUnwear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "82" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.UnsharedWear", + "kind": "enum_value", + "name": "UnsharedWear", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "81" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.Unsit", + "kind": "enum_value", + "name": "Unsit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "71" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ViewNote", + "kind": "enum_value", + "name": "ViewNote", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "61" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ViewScript", + "kind": "enum_value", + "name": "ViewScript", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "62" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvRestrictionType.ViewTexture", + "kind": "enum_value", + "name": "ViewTexture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvRestrictionType", + "value": "63" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvService", + "namespace": "LibreMetaverse.RLV", + "name": "RlvService", + "signature": "LibreMetaverse.RLV.RlvService", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvService.RLVVersion", + "kind": "constant", + "name": "RLVVersion", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "RestrainedLove viewer v3.4.3 (RLVa 2.4.2)" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvService.RLVVersionNum", + "kind": "constant", + "name": "RLVVersionNum", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "2040213" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.#ctor(LibreMetaverse.RLV.IRlvQueryCallbacks,LibreMetaverse.RLV.IRlvActionCallbacks,System.Boolean)", + "kind": "constructor", + "name": "RlvService", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callbacks", + "type": "LibreMetaverse.RLV.IRlvQueryCallbacks", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "actionCallbacks", + "type": "LibreMetaverse.RLV.IRlvActionCallbacks", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "enabled", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessInstantMessageAsync(System.String,System.Guid,System.Threading.CancellationToken)", + "kind": "method", + "name": "ProcessInstantMessageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "senderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CProcessInstantMessageAsync\u003Ed__34" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "ProcessMessageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "senderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "senderName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CProcessMessageAsync\u003Ed__33" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferAcceptedAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportInventoryOfferAcceptedAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportInventoryOfferAcceptedAsync\u003Ed__36" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferDeclinedAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportInventoryOfferDeclinedAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "folderPath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportInventoryOfferDeclinedAsync\u003Ed__37" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemAttachedAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportItemAttachedAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectFolderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportItemAttachedAsync\u003Ed__40" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportItemDetachedAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectFolderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachmentPoint", + "type": "LibreMetaverse.RLV.RlvAttachmentPoint", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportItemDetachedAsync\u003Ed__41" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemUnwornAsync(System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportItemUnwornAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "itemId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "objectFolderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearableType", + "type": "LibreMetaverse.RLV.RlvWearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportItemUnwornAsync\u003Ed__39" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemWornAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportItemWornAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectFolderId", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isShared", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wearableType", + "type": "LibreMetaverse.RLV.RlvWearableType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportItemWornAsync\u003Ed__38" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSendPublicMessageAsync(System.String,System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportSendPublicMessageAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportSendPublicMessageAsync\u003Ed__35" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportSitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportSitAsync\u003Ed__42" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvService.ReportUnsitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "kind": "method", + "name": "ReportUnsitAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "objectId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.RLV.RlvService.\u003CReportUnsitAsync\u003Ed__43" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvService.Blacklist", + "kind": "property", + "name": "Blacklist", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvBlacklist", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvService.Commands", + "kind": "property", + "name": "Commands", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvCommandProcessor", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvService.EnableInstantMessageProcessing", + "kind": "property", + "name": "EnableInstantMessageProcessing", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvService.Enabled", + "kind": "property", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvService.Permissions", + "kind": "property", + "name": "Permissions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvPermissionsService", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvService.Restrictions", + "kind": "property", + "name": "Restrictions", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvRestrictionManager", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvSharedFolder", + "namespace": "LibreMetaverse.RLV", + "name": "RlvSharedFolder", + "signature": "LibreMetaverse.RLV.RlvSharedFolder", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.#ctor(System.Guid,System.String)", + "kind": "constructor", + "name": "RlvSharedFolder", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddChild(System.Guid,System.String)", + "kind": "method", + "name": "AddChild", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvSharedFolder", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "kind": "method", + "name": "AddItem", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvInventoryItem", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isLink", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachedTo", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "attachedPrimId", + "type": "System.Nullable\u003CSystem.Guid\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "wornOn", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gestureState", + "type": "System.Nullable\u003CLibreMetaverse.RLV.RlvGestureState\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Children", + "kind": "property", + "name": "Children", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvSharedFolder\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Id", + "kind": "property", + "name": "Id", + "static": false, + "visibility": "public", + "type": "System.Guid", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Items", + "kind": "property", + "name": "Items", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Parent", + "kind": "property", + "name": "Parent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvSharedFolder", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.RLV.RlvWearableType", + "namespace": "LibreMetaverse.RLV", + "name": "RlvWearableType", + "signature": "LibreMetaverse.RLV.RlvWearableType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Alpha", + "kind": "enum_value", + "name": "Alpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Eyes", + "kind": "enum_value", + "name": "Eyes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Gloves", + "kind": "enum_value", + "name": "Gloves", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Hair", + "kind": "enum_value", + "name": "Hair", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Invalid", + "kind": "enum_value", + "name": "Invalid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "255" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Jacket", + "kind": "enum_value", + "name": "Jacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Pants", + "kind": "enum_value", + "name": "Pants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Physics", + "kind": "enum_value", + "name": "Physics", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Shape", + "kind": "enum_value", + "name": "Shape", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Shirt", + "kind": "enum_value", + "name": "Shirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Shoes", + "kind": "enum_value", + "name": "Shoes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Skin", + "kind": "enum_value", + "name": "Skin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Skirt", + "kind": "enum_value", + "name": "Skirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Socks", + "kind": "enum_value", + "name": "Socks", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Tattoo", + "kind": "enum_value", + "name": "Tattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Underpants", + "kind": "enum_value", + "name": "Underpants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Undershirt", + "kind": "enum_value", + "name": "Undershirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.RLV.RlvWearableType.Universal", + "kind": "enum_value", + "name": "Universal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.RLV.RlvWearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.RLV.RlvWearableType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Rendering.MeshFoundry", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "354d1daf-77f0-4e20-a90b-b861bd3599fd", + "file": "LibreMetaverse.Rendering.MeshFoundry.dll", + "sha256": "cf290fb99e610684ef2b3f7b3fdbf8c352d65fa13643a7fa1f29d8ffacc56eec" + }, + "counts": { + "catalog_types": 1, + "catalog_members": 14, + "metadata_types": 1, + "metadata_members": 14 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.Rendering.MeshFoundry", + "namespace": "LibreMetaverse.Rendering", + "name": "MeshFoundry", + "signature": "LibreMetaverse.Rendering.MeshFoundry", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Rendering.IRendering" + ], + "attributes": [ + { + "type": "LibreMetaverse.Rendering.RendererNameAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "MeshFoundry" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.#ctor", + "kind": "constructor", + "name": "MeshFoundry", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateFacetedMesh(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateFacetedMeshMesh(LibreMetaverse.Primitive,System.Byte[])", + "kind": "method", + "name": "GenerateFacetedMeshMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "meshData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateFacetedMeshMesh(LibreMetaverse.Primitive,System.Byte[],LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedMeshMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "meshData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateFacetedSculptMesh(LibreMetaverse.Primitive,LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedSculptMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptTexture", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateSimpleMesh(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateSimpleMeshWithNormals(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleMeshWithNormals", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateSimpleSculptMesh(LibreMetaverse.Primitive,LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleSculptMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptTexture", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[])", + "kind": "method", + "name": "MeshSubMeshAsConvexHulls", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "compressedMeshData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[],System.Collections.Generic.List{LibreMetaverse.Vector3}@)", + "kind": "method", + "name": "MeshSubMeshAsConvexHulls", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "compressedMeshData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "boundingHull", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsSimpleMesh(LibreMetaverse.Primitive,System.Byte[])", + "kind": "method", + "name": "MeshSubMeshAsSimpleMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "compressedMeshData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TerrainMesh(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "TerrainMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.Face", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "zMap", + "type": "System.Single[,]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "xBegin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "xEnd", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yBegin", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yEnd", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "kind": "method", + "name": "TransformTexCoords", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vertices", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "center", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "teFace", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primScale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.UnpackMesh(System.Byte[])", + "kind": "method", + "name": "UnpackMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "assetData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Rendering.Simple", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "1ee67076-811f-44f4-9463-c15b2454d0ec", + "file": "LibreMetaverse.Rendering.Simple.dll", + "sha256": "d7506fbc1f7f461a4a2850c74f262d981d5fa149d5559d19cc5aa3ed7382f6af" + }, + "counts": { + "catalog_types": 1, + "catalog_members": 6, + "metadata_types": 1, + "metadata_members": 6 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.Rendering.SimpleRenderer", + "namespace": "LibreMetaverse.Rendering", + "name": "SimpleRenderer", + "signature": "LibreMetaverse.Rendering.SimpleRenderer", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Rendering.IRendering" + ], + "attributes": [ + { + "type": "LibreMetaverse.Rendering.RendererNameAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Simple Cube Renderer" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.#ctor", + "kind": "constructor", + "name": "SimpleRenderer", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.GenerateFacetedMesh(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.GenerateFacetedSculptMesh(LibreMetaverse.Primitive,LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateFacetedSculptMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.FacetedMesh", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptTexture", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.GenerateSimpleMesh(LibreMetaverse.Primitive,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.GenerateSimpleSculptMesh(LibreMetaverse.Primitive,LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.Rendering.DetailLevel)", + "kind": "method", + "name": "GenerateSimpleSculptMesh", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Rendering.SimpleMesh", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "prim", + "type": "LibreMetaverse.Primitive", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sculptTexture", + "type": "LibreMetaverse.Imaging.ManagedImage", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lod", + "type": "LibreMetaverse.Rendering.DetailLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "kind": "method", + "name": "TransformTexCoords", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vertices", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "center", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "teFace", + "type": "LibreMetaverse.Primitive.TextureEntryFace", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "primScale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.StructuredData", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "45f2745e-50c2-4fd6-a838-9bceded9e67d", + "file": "LibreMetaverse.StructuredData.dll", + "sha256": "3c3326e557c8bec070d9249f23fdd7614aba5c33907170839e568e259d2fa6f9" + }, + "counts": { + "catalog_types": 16, + "catalog_members": 295, + "metadata_types": 16, + "metadata_members": 295 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.StructuredData.OSD", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSD", + "signature": "LibreMetaverse.StructuredData.OSD", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.#ctor", + "kind": "constructor", + "name": "OSD", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsColor4", + "kind": "method", + "name": "AsColor4", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsDate", + "kind": "method", + "name": "AsDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsInteger", + "kind": "method", + "name": "AsInteger", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsQuaternion", + "kind": "method", + "name": "AsQuaternion", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsReal", + "kind": "method", + "name": "AsReal", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsUUID", + "kind": "method", + "name": "AsUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsUri", + "kind": "method", + "name": "AsUri", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsVector2", + "kind": "method", + "name": "AsVector2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsVector3", + "kind": "method", + "name": "AsVector3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsVector3d", + "kind": "method", + "name": "AsVector3d", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.AsVector4", + "kind": "method", + "name": "AsVector4", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.DeserializeMembers(System.Object@,LibreMetaverse.StructuredData.OSDMap)", + "kind": "method", + "name": "DeserializeMembers", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "serialized", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Enumerates public fields via reflection. Not AOT-safe; consider an explicit deserialization method instead." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromBinary(System.Byte[])", + "kind": "method", + "name": "FromBinary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromBoolean(System.Boolean)", + "kind": "method", + "name": "FromBoolean", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromColor4(LibreMetaverse.Color4)", + "kind": "method", + "name": "FromColor4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromDate(System.DateTime)", + "kind": "method", + "name": "FromDate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.DateTime", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.Byte)", + "kind": "method", + "name": "FromInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.Int16)", + "kind": "method", + "name": "FromInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.Int32)", + "kind": "method", + "name": "FromInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.SByte)", + "kind": "method", + "name": "FromInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.UInt16)", + "kind": "method", + "name": "FromInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.UInt32)", + "kind": "method", + "name": "FromInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromLong(System.Int64)", + "kind": "method", + "name": "FromLong", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromObject(System.Object)", + "kind": "method", + "name": "FromObject", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromQuaternion(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "FromQuaternion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromReal(System.Double)", + "kind": "method", + "name": "FromReal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromReal(System.Single)", + "kind": "method", + "name": "FromReal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromString(System.String)", + "kind": "method", + "name": "FromString", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromUInteger(System.UInt32)", + "kind": "method", + "name": "FromUInteger", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromULong(System.UInt64)", + "kind": "method", + "name": "FromULong", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromUUID(LibreMetaverse.UUID)", + "kind": "method", + "name": "FromUUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromUri(System.Uri)", + "kind": "method", + "name": "FromUri", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromVector2(LibreMetaverse.Vector2)", + "kind": "method", + "name": "FromVector2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromVector3(LibreMetaverse.Vector3)", + "kind": "method", + "name": "FromVector3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromVector3d(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "FromVector3d", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.FromVector4(LibreMetaverse.Vector4)", + "kind": "method", + "name": "FromVector4", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.SerializeMembers(System.Object)", + "kind": "method", + "name": "SerializeMembers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDMap", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Enumerates public fields via reflection. Not AOT-safe; consider an explicit serialization method instead." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.ToObject(System.Type,LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "ToObject", + "static": true, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "System.Type", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.Color4)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.Quaternion)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.Color4", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.Quaternion", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.UUID", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.Vector2", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.Vector3", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.Vector3d", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~LibreMetaverse.Vector4", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Boolean", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Byte[]", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.DateTime", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Double", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Int32", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Int64", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Single", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.String", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.UInt32", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.UInt64", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Uri", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.UUID)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.Vector2)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.Vector3)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.Vector3d)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.Vector4)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Boolean)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Byte)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Byte[])~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.DateTime)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.DateTime", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Double)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Int16)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Int32)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Int64)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.SByte)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.SByte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Single)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.String)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.UInt16)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.UInt32)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.UInt64)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Uri)~LibreMetaverse.StructuredData.OSD", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSD.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDArray", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDArray", + "signature": "LibreMetaverse.StructuredData.OSDArray", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [ + "System.Collections.Generic.ICollection\u003CLibreMetaverse.StructuredData.OSD\u003E", + "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.StructuredData.OSD\u003E", + "System.Collections.Generic.IList\u003CLibreMetaverse.StructuredData.OSD\u003E", + "System.Collections.IEnumerable" + ], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.#ctor", + "kind": "constructor", + "name": "OSDArray", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.#ctor(System.Collections.Generic.List{LibreMetaverse.StructuredData.OSD})", + "kind": "constructor", + "name": "OSDArray", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.StructuredData.OSD\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.#ctor(System.Int32)", + "kind": "constructor", + "name": "OSDArray", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Add(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "llsd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsColor4", + "kind": "method", + "name": "AsColor4", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsQuaternion", + "kind": "method", + "name": "AsQuaternion", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsVector2", + "kind": "method", + "name": "AsVector2", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsVector3", + "kind": "method", + "name": "AsVector3", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsVector3d", + "kind": "method", + "name": "AsVector3d", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsVector4", + "kind": "method", + "name": "AsVector4", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Contains(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "llsd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Contains(System.String)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "element", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.CopyTo(LibreMetaverse.StructuredData.OSD[],System.Int32)", + "kind": "method", + "name": "CopyTo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "array", + "type": "LibreMetaverse.StructuredData.OSD[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.IndexOf(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "IndexOf", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Insert(System.Int32,LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "Insert", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "item", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Remove(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "llsd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.RemoveAt(System.Int32)", + "kind": "method", + "name": "RemoveAt", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.ToArrayList", + "kind": "method", + "name": "ToArrayList", + "static": false, + "visibility": "public", + "type": "System.Collections.ArrayList", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.ObsoleteAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Iterate the OSDArray directly or use LINQ; ArrayList is a non-generic collection." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDArray.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDArray.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDArray.IsReadOnly", + "kind": "property", + "name": "IsReadOnly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDArray.Item(System.Int32)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDArray.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDBinary", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDBinary", + "signature": "LibreMetaverse.StructuredData.OSDBinary", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.Byte[])", + "kind": "constructor", + "name": "OSDBinary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.Int64)", + "kind": "constructor", + "name": "OSDBinary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.UInt32)", + "kind": "constructor", + "name": "OSDBinary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.UInt64)", + "kind": "constructor", + "name": "OSDBinary", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDBinary.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDBoolean", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDBoolean", + "signature": "LibreMetaverse.StructuredData.OSDBoolean", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.#ctor(System.Boolean)", + "kind": "constructor", + "name": "OSDBoolean", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsInteger", + "kind": "method", + "name": "AsInteger", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsReal", + "kind": "method", + "name": "AsReal", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDBoolean.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDDate", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDDate", + "signature": "LibreMetaverse.StructuredData.OSDDate", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.#ctor(System.DateTime)", + "kind": "constructor", + "name": "OSDDate", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dt", + "type": "System.DateTime", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsDate", + "kind": "method", + "name": "AsDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsInteger", + "kind": "method", + "name": "AsInteger", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDDate.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDDate.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDException", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDException", + "signature": "LibreMetaverse.StructuredData.OSDException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDException.#ctor", + "kind": "constructor", + "name": "OSDException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDException.#ctor(System.String)", + "kind": "constructor", + "name": "OSDException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDException.#ctor(System.String,System.Exception)", + "kind": "constructor", + "name": "OSDException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "innerException", + "type": "System.Exception", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDFormat", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDFormat", + "signature": "LibreMetaverse.StructuredData.OSDFormat", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDFormat.Binary", + "kind": "enum_value", + "name": "Binary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDFormat", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDFormat.Json", + "kind": "enum_value", + "name": "Json", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDFormat", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDFormat.Xml", + "kind": "enum_value", + "name": "Xml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDFormat", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDFormat", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDInteger", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDInteger", + "signature": "LibreMetaverse.StructuredData.OSDInteger", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.#ctor(System.Int32)", + "kind": "constructor", + "name": "OSDInteger", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsInteger", + "kind": "method", + "name": "AsInteger", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsReal", + "kind": "method", + "name": "AsReal", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDInteger.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDLlsdXml", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDLlsdXml", + "signature": "LibreMetaverse.StructuredData.OSDLlsdXml", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDLlsdXml.value", + "kind": "field", + "name": "value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.#ctor(System.String)", + "kind": "constructor", + "name": "OSDLlsdXml", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDLlsdXml.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDMap", + "signature": "LibreMetaverse.StructuredData.OSDMap", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [ + "System.Collections.Generic.ICollection\u003CSystem.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E\u003E", + "System.Collections.Generic.IDictionary\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E", + "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E\u003E", + "System.Collections.IEnumerable" + ], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.#ctor", + "kind": "constructor", + "name": "OSDMap", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.#ctor(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.StructuredData.OSD})", + "kind": "constructor", + "name": "OSDMap", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.#ctor(System.Int32)", + "kind": "constructor", + "name": "OSDMap", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "kvp", + "type": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.String,LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "llsd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Contains(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "kvp", + "type": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ContainsKey(System.String)", + "kind": "method", + "name": "ContainsKey", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.CopyTo(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD}[],System.Int32)", + "kind": "method", + "name": "CopyTo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "array", + "type": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.IDictionaryEnumerator", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "kvp", + "type": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.String)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ToHashtable", + "kind": "method", + "name": "ToHashtable", + "static": false, + "visibility": "public", + "type": "System.Collections.Hashtable", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.ObsoleteAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Iterate the OSDMap directly as IDictionary\u003Cstring, OSD\u003E; Hashtable is a non-generic collection." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDMap.TryGetValue(System.String,LibreMetaverse.StructuredData.OSD@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "llsd", + "type": "LibreMetaverse.StructuredData.OSD\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDMap.IsReadOnly", + "kind": "property", + "name": "IsReadOnly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Item(System.String)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Keys", + "kind": "property", + "name": "Keys", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CLibreMetaverse.StructuredData.OSD\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDParser", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDParser", + "signature": "LibreMetaverse.StructuredData.OSDParser", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.BufferCharactersEqual(System.IO.StringReader,System.Char[],System.Int32)", + "kind": "method", + "name": "BufferCharactersEqual", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.IO.StringReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "buffer", + "type": "System.Char[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "offset", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ConsumeBytes(System.IO.Stream,System.Int32)", + "kind": "method", + "name": "ConsumeBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "consumeBytes", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.Deserialize(System.Byte[])", + "kind": "method", + "name": "Deserialize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.Deserialize(System.IO.Stream)", + "kind": "method", + "name": "Deserialize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.Deserialize(System.String)", + "kind": "method", + "name": "Deserialize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeJson(System.IO.Stream)", + "kind": "method", + "name": "DeserializeJson", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "json", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeJson(System.String)", + "kind": "method", + "name": "DeserializeJson", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "json", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDBinary(System.Byte[])", + "kind": "method", + "name": "DeserializeLLSDBinary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "binaryData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDBinary(System.IO.Stream)", + "kind": "method", + "name": "DeserializeLLSDBinary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDNotation(System.IO.StringReader)", + "kind": "method", + "name": "DeserializeLLSDNotation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.IO.StringReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDNotation(System.String)", + "kind": "method", + "name": "DeserializeLLSDNotation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "notationData", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDProtobuf(System.Byte[])", + "kind": "method", + "name": "DeserializeLLSDProtobuf", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDProtobuf(System.IO.Stream)", + "kind": "method", + "name": "DeserializeLLSDProtobuf", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.Byte[])", + "kind": "method", + "name": "DeserializeLLSDXml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xmlData", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.IO.Stream)", + "kind": "method", + "name": "DeserializeLLSDXml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xmlStream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.String)", + "kind": "method", + "name": "DeserializeLLSDXml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xmlData", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.Xml.XmlReader)", + "kind": "method", + "name": "DeserializeLLSDXml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "xmlData", + "type": "System.Xml.XmlReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.EscapeCharacter(System.String,System.Char)", + "kind": "method", + "name": "EscapeCharacter", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "c", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindByte(System.IO.Stream,System.Byte)", + "kind": "method", + "name": "FindByte", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "toFind", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindString(System.IO.Stream,System.String)", + "kind": "method", + "name": "FindString", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "toFind", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetLengthInBrackets(System.IO.StringReader)", + "kind": "method", + "name": "GetLengthInBrackets", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.IO.StringReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetStringDelimitedBy(System.IO.StringReader,System.Char)", + "kind": "method", + "name": "GetStringDelimitedBy", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.IO.StringReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "delimiter", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.HostToNetworkIntBytes(System.Int32)", + "kind": "method", + "name": "HostToNetworkIntBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "intHostEnd", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.NetworkToHostDouble(System.Byte[])", + "kind": "method", + "name": "NetworkToHostDouble", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "binaryNetEnd", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.NetworkToHostInt(System.Byte[])", + "kind": "method", + "name": "NetworkToHostInt", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "binaryNetEnd", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.PeekAndSkipWhitespace(System.IO.StringReader)", + "kind": "method", + "name": "PeekAndSkipWhitespace", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.IO.StringReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ReadAndSkipWhitespace(System.IO.StringReader)", + "kind": "method", + "name": "ReadAndSkipWhitespace", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "reader", + "type": "System.IO.StringReader", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeJsonString(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "kind": "method", + "name": "SerializeJsonString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "preserveDefaults", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinary(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDBinary", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinary(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "kind": "method", + "name": "SerializeLLSDBinary", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prependHeader", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinaryStream(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDBinaryStream", + "static": true, + "visibility": "public", + "type": "System.IO.MemoryStream", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinaryStream(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "kind": "method", + "name": "SerializeLLSDBinaryStream", + "static": true, + "visibility": "public", + "type": "System.IO.MemoryStream", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prependHeader", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDInnerXmlString(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDInnerXmlString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotation(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDNotation", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotationFormatted(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDNotationFormatted", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotationStream(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDNotationStream", + "static": true, + "visibility": "public", + "type": "System.IO.StringWriter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotationStreamFormatted(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDNotationStreamFormatted", + "static": true, + "visibility": "public", + "type": "System.IO.StringWriter", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDProtobuf(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "kind": "method", + "name": "SerializeLLSDProtobuf", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "osd", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "prependHeader", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlBytes(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDXmlBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlElement(System.Xml.XmlWriter,LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDXmlElement", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "writer", + "type": "System.Xml.XmlWriter", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlString(LibreMetaverse.StructuredData.OSD)", + "kind": "method", + "name": "SerializeLLSDXmlString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "LibreMetaverse.StructuredData.OSD", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SkipWhiteSpace(System.IO.Stream)", + "kind": "method", + "name": "SkipWhiteSpace", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "stream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDParser.UnescapeCharacter(System.String,System.Char)", + "kind": "method", + "name": "UnescapeCharacter", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "c", + "type": "System.Char", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDReal", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDReal", + "signature": "LibreMetaverse.StructuredData.OSDReal", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.#ctor(System.Double)", + "kind": "constructor", + "name": "OSDReal", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsInteger", + "kind": "method", + "name": "AsInteger", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsReal", + "kind": "method", + "name": "AsReal", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDReal.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDReal.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDString", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDString", + "signature": "LibreMetaverse.StructuredData.OSDString", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.#ctor(System.String)", + "kind": "constructor", + "name": "OSDString", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsDate", + "kind": "method", + "name": "AsDate", + "static": false, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsInteger", + "kind": "method", + "name": "AsInteger", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsLong", + "kind": "method", + "name": "AsLong", + "static": false, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsReal", + "kind": "method", + "name": "AsReal", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsUInteger", + "kind": "method", + "name": "AsUInteger", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsULong", + "kind": "method", + "name": "AsULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsUUID", + "kind": "method", + "name": "AsUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsUri", + "kind": "method", + "name": "AsUri", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDString.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDString.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDType", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDType", + "signature": "LibreMetaverse.StructuredData.OSDType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Array", + "kind": "enum_value", + "name": "Array", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Binary", + "kind": "enum_value", + "name": "Binary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Boolean", + "kind": "enum_value", + "name": "Boolean", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Date", + "kind": "enum_value", + "name": "Date", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Integer", + "kind": "enum_value", + "name": "Integer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.LlsdXml", + "kind": "enum_value", + "name": "LlsdXml", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "11" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Map", + "kind": "enum_value", + "name": "Map", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Real", + "kind": "enum_value", + "name": "Real", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.String", + "kind": "enum_value", + "name": "String", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.URI", + "kind": "enum_value", + "name": "URI", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.UUID", + "kind": "enum_value", + "name": "UUID", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.StructuredData.OSDType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.StructuredData.OSDType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDUUID", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDUUID", + "signature": "LibreMetaverse.StructuredData.OSDUUID", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.#ctor(LibreMetaverse.UUID)", + "kind": "constructor", + "name": "OSDUUID", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsBoolean", + "kind": "method", + "name": "AsBoolean", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsUUID", + "kind": "method", + "name": "AsUUID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDUUID.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.StructuredData.OSDUri", + "namespace": "LibreMetaverse.StructuredData", + "name": "OSDUri", + "signature": "LibreMetaverse.StructuredData.OSDUri", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.StructuredData.OSD", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUri.#ctor(System.Uri)", + "kind": "constructor", + "name": "OSDUri", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "uri", + "type": "System.Uri", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUri.AsBinary", + "kind": "method", + "name": "AsBinary", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUri.AsString", + "kind": "method", + "name": "AsString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUri.AsUri", + "kind": "method", + "name": "AsUri", + "static": false, + "visibility": "public", + "type": "System.Uri", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUri.Copy", + "kind": "method", + "name": "Copy", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSD", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.StructuredData.OSDUri.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.StructuredData.OSDUri.Type", + "kind": "property", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.StructuredData.OSDType", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Types", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "a0e34012-c279-46db-8cf9-a022310d9d9a", + "file": "LibreMetaverse.Types.dll", + "sha256": "50b4a0408afaf3e6d8d55895409f3750c1facf5ca0ed3154bbb8b907b4c3ec32" + }, + "counts": { + "catalog_types": 45, + "catalog_members": 942, + "metadata_types": 45, + "metadata_members": 942 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.AssetType", + "namespace": "LibreMetaverse", + "name": "AssetType", + "signature": "LibreMetaverse.AssetType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.SByte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AssetType.Animation", + "kind": "enum_value", + "name": "Animation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "20" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "animatn" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Bodypart", + "kind": "enum_value", + "name": "Bodypart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "13" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "bodypart" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.CallingCard", + "kind": "enum_value", + "name": "CallingCard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "callcard" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Clothing", + "kind": "enum_value", + "name": "Clothing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "clothing" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Folder", + "kind": "enum_value", + "name": "Folder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "category" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Gesture", + "kind": "enum_value", + "name": "Gesture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "21" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "gesture" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.ImageJPEG", + "kind": "enum_value", + "name": "ImageJPEG", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "19" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "jpeg" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.ImageTGA", + "kind": "enum_value", + "name": "ImageTGA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "18" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "img_tga" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.LSLBytecode", + "kind": "enum_value", + "name": "LSLBytecode", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "11" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "lslbyte" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.LSLText", + "kind": "enum_value", + "name": "LSLText", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "lsltext" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Landmark", + "kind": "enum_value", + "name": "Landmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "landmark" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Link", + "kind": "enum_value", + "name": "Link", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "24" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "link" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.LinkFolder", + "kind": "enum_value", + "name": "LinkFolder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "25" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "link_f" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Material", + "kind": "enum_value", + "name": "Material", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "57" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "material" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Mesh", + "kind": "enum_value", + "name": "Mesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "49" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "mesh" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Notecard", + "kind": "enum_value", + "name": "Notecard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "notecard" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Object", + "kind": "enum_value", + "name": "Object", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "object" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Person", + "kind": "enum_value", + "name": "Person", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "45" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "person" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Script", + "kind": "enum_value", + "name": "Script", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "script" + } + } + ] + }, + { + "type": "System.ObsoleteAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "No longer used" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Settings", + "kind": "enum_value", + "name": "Settings", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "56" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "settings" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Simstate", + "kind": "enum_value", + "name": "Simstate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "22" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "simstate" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Sound", + "kind": "enum_value", + "name": "Sound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "sound" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.SoundWAV", + "kind": "enum_value", + "name": "SoundWAV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "17" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "snd_wav" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Texture", + "kind": "enum_value", + "name": "Texture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "texture" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.TextureTGA", + "kind": "enum_value", + "name": "TextureTGA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "12" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "txtr_tga" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "-1" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "invalid" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AssetType.Widget", + "kind": "enum_value", + "name": "Widget", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AssetType", + "value": "40" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "widget" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.AttachmentPoint", + "namespace": "LibreMetaverse", + "name": "AttachmentPoint", + "signature": "LibreMetaverse.AttachmentPoint", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.AltLeftEar", + "kind": "enum_value", + "name": "AltLeftEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "48" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Alt Left Ear" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.AltLeftEye", + "kind": "enum_value", + "name": "AltLeftEye", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "50" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Alt Left Eye" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.AltRightEar", + "kind": "enum_value", + "name": "AltRightEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "49" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Alt Right Ear" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.AltRightEye", + "kind": "enum_value", + "name": "AltRightEye", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "51" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Alt Right Eye" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Chest", + "kind": "enum_value", + "name": "Chest", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "1" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Chest" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Chin", + "kind": "enum_value", + "name": "Chin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "12" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Chin" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Default", + "kind": "enum_value", + "name": "Default", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "0" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Default" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Groin", + "kind": "enum_value", + "name": "Groin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "53" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Groin" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDBottom", + "kind": "enum_value", + "name": "HUDBottom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "37" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Bottom" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDBottomLeft", + "kind": "enum_value", + "name": "HUDBottomLeft", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "36" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Bottom Left" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDBottomRight", + "kind": "enum_value", + "name": "HUDBottomRight", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "38" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Bottom Right" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDCenter", + "kind": "enum_value", + "name": "HUDCenter", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "35" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Center 1" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDCenter2", + "kind": "enum_value", + "name": "HUDCenter2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "31" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Center 2" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDTop", + "kind": "enum_value", + "name": "HUDTop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "33" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Top Center" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDTopLeft", + "kind": "enum_value", + "name": "HUDTopLeft", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "34" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Top Left" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.HUDTopRight", + "kind": "enum_value", + "name": "HUDTopRight", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "32" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "HUD Top Right" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Jaw", + "kind": "enum_value", + "name": "Jaw", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "47" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Jaw" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftEar", + "kind": "enum_value", + "name": "LeftEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "13" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Ear" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftEyeball", + "kind": "enum_value", + "name": "LeftEyeball", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "15" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Eye" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftFoot", + "kind": "enum_value", + "name": "LeftFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "7" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Foot" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftForearm", + "kind": "enum_value", + "name": "LeftForearm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "21" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Lower Arm" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftHand", + "kind": "enum_value", + "name": "LeftHand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "5" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Hand" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftHandRing", + "kind": "enum_value", + "name": "LeftHandRing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "41" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Ring Finger" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftHindFoot", + "kind": "enum_value", + "name": "LeftHindFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "54" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Hind Foot" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftHip", + "kind": "enum_value", + "name": "LeftHip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "25" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Hip" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftLowerLeg", + "kind": "enum_value", + "name": "LeftLowerLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "27" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Lower Leg" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftPec", + "kind": "enum_value", + "name": "LeftPec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "29" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Pec" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftShoulder", + "kind": "enum_value", + "name": "LeftShoulder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "3" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Shoulder" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftUpperArm", + "kind": "enum_value", + "name": "LeftUpperArm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "20" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Upper Arm" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftUpperLeg", + "kind": "enum_value", + "name": "LeftUpperLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "26" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Upper Leg" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.LeftWing", + "kind": "enum_value", + "name": "LeftWing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "45" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Left Wing" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Mouth", + "kind": "enum_value", + "name": "Mouth", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "11" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Mouth" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Neck", + "kind": "enum_value", + "name": "Neck", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "39" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Neck" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Nose", + "kind": "enum_value", + "name": "Nose", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "17" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Nose" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Pelvis", + "kind": "enum_value", + "name": "Pelvis", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "10" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Pelvis" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightEar", + "kind": "enum_value", + "name": "RightEar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "14" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Ear" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightEyeball", + "kind": "enum_value", + "name": "RightEyeball", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "16" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Eye" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightFoot", + "kind": "enum_value", + "name": "RightFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "8" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Foot" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightForearm", + "kind": "enum_value", + "name": "RightForearm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "19" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Lower Arm" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightHand", + "kind": "enum_value", + "name": "RightHand", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "6" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Hand" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightHandRing", + "kind": "enum_value", + "name": "RightHandRing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "42" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Ring Finger" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightHindFoot", + "kind": "enum_value", + "name": "RightHindFoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "55" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Hind Foot" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightHip", + "kind": "enum_value", + "name": "RightHip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "22" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Hip" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightLowerLeg", + "kind": "enum_value", + "name": "RightLowerLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "24" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Lower Leg" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightPec", + "kind": "enum_value", + "name": "RightPec", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "30" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Pec" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightShoulder", + "kind": "enum_value", + "name": "RightShoulder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "4" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Shoulder" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightUpperArm", + "kind": "enum_value", + "name": "RightUpperArm", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "18" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Upper Arm" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightUpperLeg", + "kind": "enum_value", + "name": "RightUpperLeg", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "23" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Upper Leg" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.RightWing", + "kind": "enum_value", + "name": "RightWing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "46" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Right Wing" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Root", + "kind": "enum_value", + "name": "Root", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "40" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Avatar Center" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Skull", + "kind": "enum_value", + "name": "Skull", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "2" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Head" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Spine", + "kind": "enum_value", + "name": "Spine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "9" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Back" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Stomach", + "kind": "enum_value", + "name": "Stomach", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "28" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Belly" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.TailBase", + "kind": "enum_value", + "name": "TailBase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "43" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Tail Base" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.TailTip", + "kind": "enum_value", + "name": "TailTip", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "44" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Tail Tip" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.AttachmentPoint.Tongue", + "kind": "enum_value", + "name": "Tongue", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.AttachmentPoint", + "value": "52" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Tongue" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CRC32", + "namespace": "LibreMetaverse", + "name": "CRC32", + "signature": "LibreMetaverse.CRC32", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.CRC32.CRC", + "kind": "field", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CRC32.#ctor", + "kind": "constructor", + "name": "CRC32", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte[],System.Int32,System.Int32)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "length", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "namespace": "LibreMetaverse", + "name": "CacheDictionary\u00602", + "signature": "LibreMetaverse.CacheDictionary\u003CTKey, TValue\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TValue", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [ + "System.Collections.Generic.ICollection\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E", + "System.Collections.Generic.IDictionary\u003CTKey, TValue\u003E", + "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E", + "System.Collections.IEnumerable" + ], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.#ctor(System.Int32,LibreMetaverse.ICacheDictionaryRemovalStrategy{\u00600})", + "kind": "constructor", + "name": "CacheDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "removalStrategy", + "type": "LibreMetaverse.ICacheDictionaryRemovalStrategy\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Add(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Add(\u00600,\u00601)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Contains(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.ContainsKey(\u00600)", + "kind": "method", + "name": "ContainsKey", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CopyTo(System.Collections.Generic.KeyValuePair{\u00600,\u00601}[],System.Int32)", + "kind": "method", + "name": "CopyTo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "array", + "type": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "arrayIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerator\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Remove(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "item", + "type": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Remove(\u00600)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.TryGetValue(\u00600,\u00601@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CacheDictionary\u00602.IsReadOnly", + "kind": "property", + "name": "IsReadOnly", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Item(\u00600)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "TValue", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Keys", + "kind": "property", + "name": "Keys", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CTKey\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.ICollection\u003CTValue\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator", + "namespace": "LibreMetaverse", + "name": "CacheDictionaryEnumerator", + "signature": "LibreMetaverse.CacheDictionary\u003CTKey, TValue\u003E.CacheDictionaryEnumerator", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TValue", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [ + "System.Collections.Generic.IEnumerator\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E", + "System.Collections.IEnumerator", + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.MoveNext", + "kind": "method", + "name": "MoveNext", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.Reset", + "kind": "method", + "name": "Reset", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.Current", + "kind": "property", + "name": "Current", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ClickAction", + "namespace": "LibreMetaverse", + "name": "ClickAction", + "signature": "LibreMetaverse.ClickAction", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ClickAction.Buy", + "kind": "enum_value", + "name": "Buy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClickAction.OpenMedia", + "kind": "enum_value", + "name": "OpenMedia", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClickAction.OpenTask", + "kind": "enum_value", + "name": "OpenTask", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClickAction.Pay", + "kind": "enum_value", + "name": "Pay", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClickAction.PlayMedia", + "kind": "enum_value", + "name": "PlayMedia", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClickAction.Sit", + "kind": "enum_value", + "name": "Sit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ClickAction.Touch", + "kind": "enum_value", + "name": "Touch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ClickAction", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ClickAction", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Color4", + "namespace": "LibreMetaverse", + "name": "Color4", + "signature": "LibreMetaverse.Color4", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IComparable\u003CLibreMetaverse.Color4\u003E", + "System.IEquatable\u003CLibreMetaverse.Color4\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Color4.A", + "kind": "field", + "name": "A", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Color4.B", + "kind": "field", + "name": "B", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Color4.Black", + "kind": "field", + "name": "Black", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Color4.G", + "kind": "field", + "name": "G", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Color4.R", + "kind": "field", + "name": "R", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Color4.White", + "kind": "field", + "name": "White", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)", + "kind": "constructor", + "name": "Color4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "r", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "g", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "a", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean)", + "kind": "constructor", + "name": "Color4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "Color4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "alphaInverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Color4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "r", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "g", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "a", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.CompareTo(LibreMetaverse.Color4)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "color", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.Equals(LibreMetaverse.Color4)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "kind": "method", + "name": "FromBytes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "kind": "method", + "name": "FromBytes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "alphaInverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.FromHSV(System.Double,System.Double,System.Double)", + "kind": "method", + "name": "FromHSV", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "hue", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "saturation", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.GetBytes(System.Boolean)", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.GetFloatBytes", + "kind": "method", + "name": "GetFloatBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.GetHue", + "kind": "method", + "name": "GetHue", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.Lerp(LibreMetaverse.Color4,LibreMetaverse.Color4,System.Single)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32,System.Boolean)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "inverted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.ToFloatBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToFloatBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.ToRGBString", + "kind": "method", + "name": "ToRGBString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.op_Addition(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.op_Equality(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.op_Inequality(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.op_Multiply(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Color4.op_Subtraction(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Color4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.Color4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.DoubleDictionary\u00603", + "namespace": "LibreMetaverse", + "name": "DoubleDictionary\u00603", + "signature": "LibreMetaverse.DoubleDictionary\u003CTKey1, TKey2, TValue\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey1", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TKey2", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TValue", + "position": 2, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.#ctor", + "kind": "constructor", + "name": "DoubleDictionary\u00603", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.#ctor(System.Int32)", + "kind": "constructor", + "name": "DoubleDictionary\u00603", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Add(\u00600,\u00601,\u00602)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key1", + "type": "TKey1", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "key2", + "type": "TKey2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ContainsKey(\u00600)", + "kind": "method", + "name": "ContainsKey", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey1", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ContainsKey(\u00601)", + "kind": "method", + "name": "ContainsKey", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.FindAll(System.Predicate{\u00602})", + "kind": "method", + "name": "FindAll", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IList\u003CTValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "predicate", + "type": "System.Predicate\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.FindValue(System.Predicate{\u00602})", + "kind": "method", + "name": "FindValue", + "static": false, + "visibility": "public", + "type": "TValue", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "predicate", + "type": "System.Predicate\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00600,\u00602}})", + "kind": "method", + "name": "ForEach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.Action\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey1, TValue\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00601,\u00602}})", + "kind": "method", + "name": "ForEach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.Action\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey2, TValue\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{\u00602})", + "kind": "method", + "name": "ForEach", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.Action\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Remove(\u00600)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key1", + "type": "TKey1", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Remove(\u00600,\u00601)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key1", + "type": "TKey1", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "key2", + "type": "TKey2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Remove(\u00601)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key2", + "type": "TKey2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.RemoveAll(System.Predicate{\u00602})", + "kind": "method", + "name": "RemoveAll", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "predicate", + "type": "System.Predicate\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.TryGetValue(\u00600,\u00602@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey1", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.TryGetValue(\u00601,\u00602@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.DoubleDictionary\u00603.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EmptyRemovalStrategy\u00601", + "namespace": "LibreMetaverse", + "name": "EmptyRemovalStrategy\u00601", + "signature": "LibreMetaverse.EmptyRemovalStrategy\u003CTKey\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + } + ], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.ICacheDictionaryRemovalStrategy\u003CTKey\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.#ctor", + "kind": "constructor", + "name": "EmptyRemovalStrategy\u00601", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.GetKeyToRemove", + "kind": "method", + "name": "GetKeyToRemove", + "static": false, + "visibility": "public", + "type": "TKey", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.Initialize(System.Int32)", + "kind": "method", + "name": "Initialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.KeyAccessed(\u00600)", + "kind": "method", + "name": "KeyAccessed", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.KeyAdded(\u00600)", + "kind": "method", + "name": "KeyAdded", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.KeyRemoved(\u00600)", + "kind": "method", + "name": "KeyRemoved", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EnumInfoAttribute", + "namespace": "LibreMetaverse", + "name": "EnumInfoAttribute", + "signature": "LibreMetaverse.EnumInfoAttribute", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Attribute", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.EnumInfoAttribute.Text", + "kind": "field", + "name": "Text", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EnumInfoAttribute.#ctor", + "kind": "constructor", + "name": "EnumInfoAttribute", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.EnumInfoAttribute.#ctor(System.String)", + "kind": "constructor", + "name": "EnumInfoAttribute", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.EnumInfoExtensions", + "namespace": "LibreMetaverse", + "name": "EnumInfoExtensions", + "signature": "LibreMetaverse.EnumInfoExtensions", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.EnumInfoExtensions.GetText(System.Enum)", + "kind": "method", + "name": "GetText", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Enum", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.ExtensionAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ExpiringCache\u00602", + "namespace": "LibreMetaverse", + "name": "ExpiringCache\u00602", + "signature": "LibreMetaverse.ExpiringCache\u003CTKey, TValue\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TValue", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.#ctor", + "kind": "constructor", + "name": "ExpiringCache\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Add(\u00600,\u00601,System.Double)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "expirationSeconds", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Add(\u00600,\u00601,System.TimeSpan)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "slidingExpiration", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.AddOrUpdate(\u00600,\u00601,System.Double)", + "kind": "method", + "name": "AddOrUpdate", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "expirationSeconds", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.AddOrUpdate(\u00600,\u00601,System.TimeSpan)", + "kind": "method", + "name": "AddOrUpdate", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "slidingExpiration", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Contains(\u00600)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.CopyTo(System.Array,System.Int32)", + "kind": "method", + "name": "CopyTo", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "array", + "type": "System.Array", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "startIndex", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Remove(\u00600)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.TryGetValue(\u00600,\u00601@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601,System.Double)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "expirationSeconds", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601,System.TimeSpan)", + "kind": "method", + "name": "Update", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "slidingExpiration", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ExpiringCache\u00602.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.ExpiringCache\u00602.Item(\u00600)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Object", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ExtraParamType", + "namespace": "LibreMetaverse", + "name": "ExtraParamType", + "signature": "LibreMetaverse.ExtraParamType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt16", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.ExtraParamType.ExtendedMesh", + "kind": "enum_value", + "name": "ExtendedMesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "112" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.Flexible", + "kind": "enum_value", + "name": "Flexible", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "16" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.Light", + "kind": "enum_value", + "name": "Light", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "32" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.LightImage", + "kind": "enum_value", + "name": "LightImage", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "64" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.Mesh", + "kind": "enum_value", + "name": "Mesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "96" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.ReflectionProbe", + "kind": "enum_value", + "name": "ReflectionProbe", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "144" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.RenderMaterial", + "kind": "enum_value", + "name": "RenderMaterial", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "128" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ExtraParamType.Sculpt", + "kind": "enum_value", + "name": "Sculpt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ExtraParamType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ExtraParamType", + "value": "48" + }, + "numeric_width": 16, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FaceType", + "namespace": "LibreMetaverse", + "name": "FaceType", + "signature": "LibreMetaverse.FaceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt16", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.FaceType.InnerSide", + "kind": "enum_value", + "name": "InnerSide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "4" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.OuterSide0", + "kind": "enum_value", + "name": "OuterSide0", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "32" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.OuterSide1", + "kind": "enum_value", + "name": "OuterSide1", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "64" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.OuterSide2", + "kind": "enum_value", + "name": "OuterSide2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "128" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.OuterSide3", + "kind": "enum_value", + "name": "OuterSide3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "256" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.PathBegin", + "kind": "enum_value", + "name": "PathBegin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "1" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.PathEnd", + "kind": "enum_value", + "name": "PathEnd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "2" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.ProfileBegin", + "kind": "enum_value", + "name": "ProfileBegin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "8" + }, + "numeric_width": 16, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FaceType.ProfileEnd", + "kind": "enum_value", + "name": "ProfileEnd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FaceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FaceType", + "value": "16" + }, + "numeric_width": 16, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.FolderType", + "namespace": "LibreMetaverse", + "name": "FolderType", + "signature": "LibreMetaverse.FolderType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.SByte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.FolderType.Animation", + "kind": "enum_value", + "name": "Animation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "20" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Animations" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.BasicRoot", + "kind": "enum_value", + "name": "BasicRoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "52" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Basic Root" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.BodyPart", + "kind": "enum_value", + "name": "BodyPart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "13" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Body Parts" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.CallingCard", + "kind": "enum_value", + "name": "CallingCard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Calling Cards" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Clothing", + "kind": "enum_value", + "name": "Clothing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Clothing" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.CurrentOutfit", + "kind": "enum_value", + "name": "CurrentOutfit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "46" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Current Outfit" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.EnsembleEnd", + "kind": "enum_value", + "name": "EnsembleEnd", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "45" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.EnsembleStart", + "kind": "enum_value", + "name": "EnsembleStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "26" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Favorites", + "kind": "enum_value", + "name": "Favorites", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "23" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Favorites" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Gesture", + "kind": "enum_value", + "name": "Gesture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "21" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Gestures" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Inbox", + "kind": "enum_value", + "name": "Inbox", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "50" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Received Items" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.LSLText", + "kind": "enum_value", + "name": "LSLText", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Scripts" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Landmark", + "kind": "enum_value", + "name": "Landmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Landmarks" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.LostAndFound", + "kind": "enum_value", + "name": "LostAndFound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "16" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Lost And Found" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.MarketplaceListings", + "kind": "enum_value", + "name": "MarketplaceListings", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "53" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Marketplace Listings" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.MarketplaceStock", + "kind": "enum_value", + "name": "MarketplaceStock", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "54" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "New Stock" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.MarketplaceVersion", + "kind": "enum_value", + "name": "MarketplaceVersion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "55" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Marketplace Version" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Material", + "kind": "enum_value", + "name": "Material", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "57" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Material" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Mesh", + "kind": "enum_value", + "name": "Mesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "49" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Meshes" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.MyOutfits", + "kind": "enum_value", + "name": "MyOutfits", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "48" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "My Outfits" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "-1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Notecard", + "kind": "enum_value", + "name": "Notecard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Notecards" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Object", + "kind": "enum_value", + "name": "Object", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Objects" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.OldRoot", + "kind": "enum_value", + "name": "OldRoot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "System.ObsoleteAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "No longer used, please use FolderType.Root" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Outbox", + "kind": "enum_value", + "name": "Outbox", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "51" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Merchant Outbox" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Outfit", + "kind": "enum_value", + "name": "Outfit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "47" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "New Outfit" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Root", + "kind": "enum_value", + "name": "Root", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "My Inventory" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Settings", + "kind": "enum_value", + "name": "Settings", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "56" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Settings" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Snapshot", + "kind": "enum_value", + "name": "Snapshot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "15" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Photo Album" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Sound", + "kind": "enum_value", + "name": "Sound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Sounds" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Suitcase", + "kind": "enum_value", + "name": "Suitcase", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "100" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Suitcase" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Texture", + "kind": "enum_value", + "name": "Texture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Textures" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.FolderType.Trash", + "kind": "enum_value", + "name": "Trash", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.FolderType", + "value": "14" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Trash" + } + } + ] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.HoleType", + "namespace": "LibreMetaverse", + "name": "HoleType", + "signature": "LibreMetaverse.HoleType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.HoleType.Circle", + "kind": "enum_value", + "name": "Circle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HoleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HoleType", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HoleType.Same", + "kind": "enum_value", + "name": "Same", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HoleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HoleType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HoleType.Square", + "kind": "enum_value", + "name": "Square", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HoleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HoleType", + "value": "32" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.HoleType.Triangle", + "kind": "enum_value", + "name": "Triangle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.HoleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.HoleType", + "value": "48" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601", + "namespace": "LibreMetaverse", + "name": "ICacheDictionaryRemovalStrategy\u00601", + "signature": "LibreMetaverse.ICacheDictionaryRemovalStrategy\u003CTKey\u003E", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + } + ], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.GetKeyToRemove", + "kind": "method", + "name": "GetKeyToRemove", + "static": false, + "visibility": "public", + "type": "TKey", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.Initialize(System.Int32)", + "kind": "method", + "name": "Initialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.KeyAccessed(\u00600)", + "kind": "method", + "name": "KeyAccessed", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.KeyAdded(\u00600)", + "kind": "method", + "name": "KeyAdded", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.KeyRemoved(\u00600)", + "kind": "method", + "name": "KeyRemoved", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.InventoryType", + "namespace": "LibreMetaverse", + "name": "InventoryType", + "signature": "LibreMetaverse.InventoryType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.SByte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.InventoryType.Animation", + "kind": "enum_value", + "name": "Animation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "19" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Attachment", + "kind": "enum_value", + "name": "Attachment", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "17" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.CallingCard", + "kind": "enum_value", + "name": "CallingCard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Category", + "kind": "enum_value", + "name": "Category", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Folder", + "kind": "enum_value", + "name": "Folder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Gesture", + "kind": "enum_value", + "name": "Gesture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "20" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.LSL", + "kind": "enum_value", + "name": "LSL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Landmark", + "kind": "enum_value", + "name": "Landmark", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Material", + "kind": "enum_value", + "name": "Material", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "24" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Mesh", + "kind": "enum_value", + "name": "Mesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "22" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Notecard", + "kind": "enum_value", + "name": "Notecard", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Object", + "kind": "enum_value", + "name": "Object", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.RootCategory", + "kind": "enum_value", + "name": "RootCategory", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Settings", + "kind": "enum_value", + "name": "Settings", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "23" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Snapshot", + "kind": "enum_value", + "name": "Snapshot", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "15" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Sound", + "kind": "enum_value", + "name": "Sound", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Texture", + "kind": "enum_value", + "name": "Texture", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "-1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.InventoryType.Wearable", + "kind": "enum_value", + "name": "Wearable", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.InventoryType", + "value": "18" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.JointType", + "namespace": "LibreMetaverse", + "name": "JointType", + "signature": "LibreMetaverse.JointType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.JointType.Hinge", + "kind": "enum_value", + "name": "Hinge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.JointType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.JointType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.JointType.Invalid", + "kind": "enum_value", + "name": "Invalid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.JointType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.JointType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.JointType.Point", + "kind": "enum_value", + "name": "Point", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.JointType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.JointType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.LruRemovalStrategy\u00601", + "namespace": "LibreMetaverse", + "name": "LruRemovalStrategy\u00601", + "signature": "LibreMetaverse.LruRemovalStrategy\u003CTKey\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + } + ], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.ICacheDictionaryRemovalStrategy\u003CTKey\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.#ctor", + "kind": "constructor", + "name": "LruRemovalStrategy\u00601", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.GetKeyToRemove", + "kind": "method", + "name": "GetKeyToRemove", + "static": false, + "visibility": "public", + "type": "TKey", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.Initialize(System.Int32)", + "kind": "method", + "name": "Initialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.KeyAccessed(\u00600)", + "kind": "method", + "name": "KeyAccessed", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.KeyAdded(\u00600)", + "kind": "method", + "name": "KeyAdded", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.KeyRemoved(\u00600)", + "kind": "method", + "name": "KeyRemoved", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Material", + "namespace": "LibreMetaverse", + "name": "Material", + "signature": "LibreMetaverse.Material", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Material.Flesh", + "kind": "enum_value", + "name": "Flesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Glass", + "kind": "enum_value", + "name": "Glass", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Light", + "kind": "enum_value", + "name": "Light", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "7" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Metal", + "kind": "enum_value", + "name": "Metal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Plastic", + "kind": "enum_value", + "name": "Plastic", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Rubber", + "kind": "enum_value", + "name": "Rubber", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "6" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Stone", + "kind": "enum_value", + "name": "Stone", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Material.Wood", + "kind": "enum_value", + "name": "Wood", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Material", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Material", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Matrix4", + "namespace": "LibreMetaverse", + "name": "Matrix4", + "signature": "LibreMetaverse.Matrix4", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Matrix4\u003E" + ], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Matrix4.Identity", + "kind": "field", + "name": "Identity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M11", + "kind": "field", + "name": "M11", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M12", + "kind": "field", + "name": "M12", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M13", + "kind": "field", + "name": "M13", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M14", + "kind": "field", + "name": "M14", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M21", + "kind": "field", + "name": "M21", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M22", + "kind": "field", + "name": "M22", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M23", + "kind": "field", + "name": "M23", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M24", + "kind": "field", + "name": "M24", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M31", + "kind": "field", + "name": "M31", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M32", + "kind": "field", + "name": "M32", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M33", + "kind": "field", + "name": "M33", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M34", + "kind": "field", + "name": "M34", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M41", + "kind": "field", + "name": "M41", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M42", + "kind": "field", + "name": "M42", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M43", + "kind": "field", + "name": "M43", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.M44", + "kind": "field", + "name": "M44", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Matrix4.Zero", + "kind": "field", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.#ctor(LibreMetaverse.Matrix4)", + "kind": "constructor", + "name": "Matrix4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "m", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Matrix4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "roll", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pitch", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yaw", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Matrix4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "m11", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m12", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m13", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m14", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m21", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m22", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m23", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m24", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m31", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m32", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m33", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m34", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m41", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m42", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m43", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "m44", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Add(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix2", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Adjoint(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Adjoint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Adjoint3x3(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Adjoint3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateFromAxisAngle(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "CreateFromAxisAngle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "axis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateFromEulers(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "CreateFromEulers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "roll", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pitch", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yaw", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateFromQuaternion(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "CreateFromQuaternion", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "quaternion", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateLookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "CreateLookAt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cameraPosition", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cameraTarget", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cameraUpVector", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateRotationX(System.Single)", + "kind": "method", + "name": "CreateRotationX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "radians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateRotationY(System.Single)", + "kind": "method", + "name": "CreateRotationY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "radians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateRotationZ(System.Single)", + "kind": "method", + "name": "CreateRotationZ", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "radians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateScale(LibreMetaverse.Vector3)", + "kind": "method", + "name": "CreateScale", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "scale", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateTranslation(LibreMetaverse.Vector3)", + "kind": "method", + "name": "CreateTranslation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.CreateWorld(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "CreateWorld", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "forward", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "up", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Decompose(LibreMetaverse.Vector3@,LibreMetaverse.Quaternion@,LibreMetaverse.Vector3@)", + "kind": "method", + "name": "Decompose", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "scale", + "type": "LibreMetaverse.Vector3\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "translation", + "type": "LibreMetaverse.Vector3\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Determinant", + "kind": "method", + "name": "Determinant", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Determinant3x3", + "kind": "method", + "name": "Determinant3x3", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Divide(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix2", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Divide(LibreMetaverse.Matrix4,System.Single)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Equals(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "kind": "method", + "name": "GetEulerAngles", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "roll", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "pitch", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "yaw", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.GetQuaternion", + "kind": "method", + "name": "GetQuaternion", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Inverse(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Inverse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Inverse3x3(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Inverse3x3", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Lerp(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4,System.Single)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix2", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Minor(LibreMetaverse.Matrix4,System.Int32,System.Int32)", + "kind": "method", + "name": "Minor", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "row", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "col", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Multiply(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix2", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Multiply(LibreMetaverse.Matrix4,System.Single)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Negate(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Negate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Subtract(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Subtract", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix1", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix2", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Trace", + "kind": "method", + "name": "Trace", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Transform(LibreMetaverse.Matrix4,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Transform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rotation", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.Transpose(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Transpose", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Addition(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Division(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Division(LibreMetaverse.Matrix4,System.Single)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Equality(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Inequality(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Multiply(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Multiply(LibreMetaverse.Matrix4,System.Single)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scalar", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_Subtraction(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Matrix4.op_UnaryNegation(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_UnaryNegation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Matrix4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Matrix4.AtAxis", + "kind": "property", + "name": "AtAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Matrix4.Item(System.Int32)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "row", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Matrix4.Item(System.Int32,System.Int32)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "row", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "column", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Matrix4.LeftAxis", + "kind": "property", + "name": "LeftAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Matrix4.UpAxis", + "kind": "property", + "name": "UpAxis", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MruRemovalStrategy\u00601", + "namespace": "LibreMetaverse", + "name": "MruRemovalStrategy\u00601", + "signature": "LibreMetaverse.MruRemovalStrategy\u003CTKey\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + } + ], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.ICacheDictionaryRemovalStrategy\u003CTKey\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.#ctor", + "kind": "constructor", + "name": "MruRemovalStrategy\u00601", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.GetKeyToRemove", + "kind": "method", + "name": "GetKeyToRemove", + "static": false, + "visibility": "public", + "type": "TKey", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.Initialize(System.Int32)", + "kind": "method", + "name": "Initialize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxSize", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.KeyAccessed(\u00600)", + "kind": "method", + "name": "KeyAccessed", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.KeyAdded(\u00600)", + "kind": "method", + "name": "KeyAdded", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.KeyRemoved(\u00600)", + "kind": "method", + "name": "KeyRemoved", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "namespace": "LibreMetaverse", + "name": "MultiValueDictionary\u00602", + "signature": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [ + { + "name": "TKey", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [] + }, + { + "name": "TValue", + "position": 1, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "base_type": "System.Object", + "interfaces": [ + "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "System.Collections.Generic.IReadOnlyCollection\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "System.Collections.Generic.IReadOnlyDictionary\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E", + "System.Collections.IEnumerable" + ], + "attributes": [ + { + "type": "System.Reflection.DefaultMemberAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Item" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor", + "kind": "constructor", + "name": "MultiValueDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "kind": "constructor", + "name": "MultiValueDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "enumerable", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "kind": "constructor", + "name": "MultiValueDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "enumerable", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEqualityComparer{\u00600})", + "kind": "constructor", + "name": "MultiValueDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Int32)", + "kind": "constructor", + "name": "MultiValueDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "kind": "constructor", + "name": "MultiValueDictionary\u00602", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Add(\u00600,\u00601)", + "kind": "method", + "name": "Add", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.AddRange(\u00600,System.Collections.Generic.IEnumerable{\u00601})", + "kind": "method", + "name": "AddRange", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "values", + "type": "System.Collections.Generic.IEnumerable\u003CTValue\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Clear", + "kind": "method", + "name": "Clear", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Contains(\u00600,\u00601)", + "kind": "method", + "name": "Contains", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.ContainsKey(\u00600)", + "kind": "method", + "name": "ContainsKey", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.ContainsValue(\u00601)", + "kind": "method", + "name": "ContainsValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": true, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": true, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "enumerable", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": true, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "enumerable", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "enumerable", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "collectionFactory", + "type": "System.Func\u003CTValueCollection\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Func{\u0060\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "enumerable", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "collectionFactory", + "type": "System.Func\u003CTValueCollection\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": true, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "collectionFactory", + "type": "System.Func\u003CTValueCollection\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Func{\u0060\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "collectionFactory", + "type": "System.Func\u003CTValueCollection\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32)", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": true, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": true, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "comparer", + "type": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "collectionFactory", + "type": "System.Func\u003CTValueCollection\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Func{\u0060\u00600})", + "kind": "method", + "name": "Create", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.MultiValueDictionary\u003CTKey, TValue\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "TValueCollection", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [ + "System.Collections.Generic.ICollection\u003CTValue\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "capacity", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "collectionFactory", + "type": "System.Func\u003CTValueCollection\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.GetEnumerator", + "kind": "method", + "name": "GetEnumerator", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerator\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Remove(\u00600)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Remove(\u00600,\u00601)", + "kind": "method", + "name": "Remove", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "TValue", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.TryGetValue(\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}@)", + "kind": "method", + "name": "TryGetValue", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Count", + "kind": "property", + "name": "Count", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Item(\u00600)", + "kind": "indexer", + "name": "Item", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [ + { + "name": "key", + "type": "TKey", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Keys", + "kind": "property", + "name": "Keys", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CTKey\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Values", + "kind": "property", + "name": "Values", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ObjectCategory", + "namespace": "LibreMetaverse", + "name": "ObjectCategory", + "signature": "LibreMetaverse.ObjectCategory", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ObjectCategory.Group", + "kind": "enum_value", + "name": "Group", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectCategory.Invalid", + "kind": "enum_value", + "name": "Invalid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "-1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectCategory.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectCategory.Other", + "kind": "enum_value", + "name": "Other", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectCategory.Owner", + "kind": "enum_value", + "name": "Owner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectCategory.Selected", + "kind": "enum_value", + "name": "Selected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ObjectCategory.Temporary", + "kind": "enum_value", + "name": "Temporary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ObjectCategory", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ObjectCategory", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PCode", + "namespace": "LibreMetaverse", + "name": "PCode", + "signature": "LibreMetaverse.PCode", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PCode.Avatar", + "kind": "enum_value", + "name": "Avatar", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "47" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PCode.Grass", + "kind": "enum_value", + "name": "Grass", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "95" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PCode.NewTree", + "kind": "enum_value", + "name": "NewTree", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "111" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PCode.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PCode.ParticleSystem", + "kind": "enum_value", + "name": "ParticleSystem", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "143" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PCode.Prim", + "kind": "enum_value", + "name": "Prim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "9" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PCode.Tree", + "kind": "enum_value", + "name": "Tree", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PCode", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PCode", + "value": "255" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PathCurve", + "namespace": "LibreMetaverse", + "name": "PathCurve", + "signature": "LibreMetaverse.PathCurve", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PathCurve.Circle", + "kind": "enum_value", + "name": "Circle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PathCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PathCurve", + "value": "32" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PathCurve.Circle2", + "kind": "enum_value", + "name": "Circle2", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PathCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PathCurve", + "value": "48" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PathCurve.Flexible", + "kind": "enum_value", + "name": "Flexible", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PathCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PathCurve", + "value": "128" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PathCurve.Line", + "kind": "enum_value", + "name": "Line", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PathCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PathCurve", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PathCurve.Test", + "kind": "enum_value", + "name": "Test", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PathCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PathCurve", + "value": "64" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PhysicsShapeType", + "namespace": "LibreMetaverse", + "name": "PhysicsShapeType", + "signature": "LibreMetaverse.PhysicsShapeType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PhysicsShapeType.ConvexHull", + "kind": "enum_value", + "name": "ConvexHull", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PhysicsShapeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PhysicsShapeType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PhysicsShapeType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PhysicsShapeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PhysicsShapeType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PhysicsShapeType.Prim", + "kind": "enum_value", + "name": "Prim", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PhysicsShapeType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PhysicsShapeType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimFlags", + "namespace": "LibreMetaverse", + "name": "PrimFlags", + "signature": "LibreMetaverse.PrimFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.UInt32", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimFlags.AllowInventoryDrop", + "kind": "enum_value", + "name": "AllowInventoryDrop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "65536" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.AnimSource", + "kind": "enum_value", + "name": "AnimSource", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "2097152" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.CameraDecoupled", + "kind": "enum_value", + "name": "CameraDecoupled", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "1048576" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.CameraSource", + "kind": "enum_value", + "name": "CameraSource", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "4194304" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.CastShadows", + "kind": "enum_value", + "name": "CastShadows", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "8388608" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.CreateSelected", + "kind": "enum_value", + "name": "CreateSelected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.DieAtEdge", + "kind": "enum_value", + "name": "DieAtEdge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "16777216" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Flying", + "kind": "enum_value", + "name": "Flying", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "134217728" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.InventoryEmpty", + "kind": "enum_value", + "name": "InventoryEmpty", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "2048" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.JointHinge", + "kind": "enum_value", + "name": "JointHinge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "4096" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.JointLP2P", + "kind": "enum_value", + "name": "JointLP2P", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "16384" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.JointP2P", + "kind": "enum_value", + "name": "JointP2P", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "8192" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.JointWheel", + "kind": "enum_value", + "name": "JointWheel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "32768" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Money", + "kind": "enum_value", + "name": "Money", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "512" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectAnyOwner", + "kind": "enum_value", + "name": "ObjectAnyOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectCopy", + "kind": "enum_value", + "name": "ObjectCopy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectGroupOwned", + "kind": "enum_value", + "name": "ObjectGroupOwned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "262144" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectModify", + "kind": "enum_value", + "name": "ObjectModify", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectMove", + "kind": "enum_value", + "name": "ObjectMove", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "256" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectOwnerModify", + "kind": "enum_value", + "name": "ObjectOwnerModify", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "268435456" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectTransfer", + "kind": "enum_value", + "name": "ObjectTransfer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "131072" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectYouOfficer", + "kind": "enum_value", + "name": "ObjectYouOfficer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "524288" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ObjectYouOwner", + "kind": "enum_value", + "name": "ObjectYouOwner", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "32" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Phantom", + "kind": "enum_value", + "name": "Phantom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "1024" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Physics", + "kind": "enum_value", + "name": "Physics", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ReturnAtEdge", + "kind": "enum_value", + "name": "ReturnAtEdge", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "33554432" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Sandbox", + "kind": "enum_value", + "name": "Sandbox", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "67108864" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Scripted", + "kind": "enum_value", + "name": "Scripted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "64" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Temporary", + "kind": "enum_value", + "name": "Temporary", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "1073741824" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.TemporaryOnRez", + "kind": "enum_value", + "name": "TemporaryOnRez", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "536870912" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.Touch", + "kind": "enum_value", + "name": "Touch", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "128" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimFlags.ZlibCompressed", + "kind": "enum_value", + "name": "ZlibCompressed", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimFlags", + "value": "2147483648" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.PrimType", + "namespace": "LibreMetaverse", + "name": "PrimType", + "signature": "LibreMetaverse.PrimType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.PrimType.Box", + "kind": "enum_value", + "name": "Box", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Cylinder", + "kind": "enum_value", + "name": "Cylinder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Mesh", + "kind": "enum_value", + "name": "Mesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Prism", + "kind": "enum_value", + "name": "Prism", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Ring", + "kind": "enum_value", + "name": "Ring", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Sculpt", + "kind": "enum_value", + "name": "Sculpt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Sphere", + "kind": "enum_value", + "name": "Sphere", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Torus", + "kind": "enum_value", + "name": "Torus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Tube", + "kind": "enum_value", + "name": "Tube", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.PrimType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.PrimType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.PrimType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.ProfileCurve", + "namespace": "LibreMetaverse", + "name": "ProfileCurve", + "signature": "LibreMetaverse.ProfileCurve", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.ProfileCurve.Circle", + "kind": "enum_value", + "name": "Circle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileCurve", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileCurve.EqualTriangle", + "kind": "enum_value", + "name": "EqualTriangle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileCurve", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileCurve.HalfCircle", + "kind": "enum_value", + "name": "HalfCircle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileCurve", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileCurve.IsoTriangle", + "kind": "enum_value", + "name": "IsoTriangle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileCurve", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileCurve.RightTriangle", + "kind": "enum_value", + "name": "RightTriangle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileCurve", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.ProfileCurve.Square", + "kind": "enum_value", + "name": "Square", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.ProfileCurve", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.ProfileCurve", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Quaternion", + "namespace": "LibreMetaverse", + "name": "Quaternion", + "signature": "LibreMetaverse.Quaternion", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IEquatable\u003CLibreMetaverse.Quaternion\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Quaternion.Identity", + "kind": "field", + "name": "Identity", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Quaternion.W", + "kind": "field", + "name": "W", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Quaternion.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Quaternion.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Quaternion.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.#ctor(LibreMetaverse.Vector3,System.Single)", + "kind": "constructor", + "name": "Quaternion", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vectorPart", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scalarPart", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Byte[],System.Int32,System.Boolean)", + "kind": "constructor", + "name": "Quaternion", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normalized", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Quaternion", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Quaternion", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Add(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.ApproxEquals(LibreMetaverse.Quaternion,System.Single)", + "kind": "method", + "name": "ApproxEquals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "quat", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tolerance", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Conjugate(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Conjugate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "quaternion", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "CreateFromAxisAngle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "axis", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "CreateFromAxisAngle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "axisX", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "axisY", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "axisZ", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "angle", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.CreateFromEulers(LibreMetaverse.Vector3)", + "kind": "method", + "name": "CreateFromEulers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "eulers", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.CreateFromEulers(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "CreateFromEulers", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "roll", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pitch", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "yaw", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.CreateFromRotationMatrix(LibreMetaverse.Matrix4)", + "kind": "method", + "name": "CreateFromRotationMatrix", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Divide(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Dot(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Dot", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Equals(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "kind": "method", + "name": "FromBytes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "normalized", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.GetAxisAngle(LibreMetaverse.Vector3@,System.Single@)", + "kind": "method", + "name": "GetAxisAngle", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "axis", + "type": "LibreMetaverse.Vector3\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "angle", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "kind": "method", + "name": "GetEulerAngles", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "roll", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "pitch", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "yaw", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Inverse(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Inverse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "quaternion", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.LengthSquared", + "kind": "method", + "name": "LengthSquared", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Multiply(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Multiply(LibreMetaverse.Quaternion,System.Single)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "quaternion", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Negate(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Negate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "quaternion", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Normalize(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Normalize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Slerp(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion,System.Single)", + "kind": "method", + "name": "Slerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.Subtract(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "Subtract", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.ToEulerVector", + "kind": "method", + "name": "ToEulerVector", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.ToRawString", + "kind": "method", + "name": "ToRawString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.TryParse(System.String,LibreMetaverse.Quaternion@)", + "kind": "method", + "name": "TryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.Quaternion\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Addition(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Division(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Equality(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Inequality(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Multiply(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Multiply(LibreMetaverse.Quaternion,System.Single)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_Subtraction(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q1", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "q2", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Quaternion.op_UnaryNegation(LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_UnaryNegation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "q", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Ray", + "namespace": "LibreMetaverse", + "name": "Ray", + "signature": "LibreMetaverse.Ray", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Ray.Direction", + "kind": "field", + "name": "Direction", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Ray.Origin", + "kind": "field", + "name": "Origin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Ray.#ctor(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "Ray", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "origin", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "direction", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SaleType", + "namespace": "LibreMetaverse", + "name": "SaleType", + "signature": "LibreMetaverse.SaleType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.SaleType.Contents", + "kind": "enum_value", + "name": "Contents", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SaleType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SaleType.Copy", + "kind": "enum_value", + "name": "Copy", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SaleType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SaleType.Not", + "kind": "enum_value", + "name": "Not", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SaleType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SaleType.Original", + "kind": "enum_value", + "name": "Original", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SaleType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SculptType", + "namespace": "LibreMetaverse", + "name": "SculptType", + "signature": "LibreMetaverse.SculptType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.SculptType.Cylinder", + "kind": "enum_value", + "name": "Cylinder", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.Invert", + "kind": "enum_value", + "name": "Invert", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "64" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.Mesh", + "kind": "enum_value", + "name": "Mesh", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.Mirror", + "kind": "enum_value", + "name": "Mirror", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "128" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.Plane", + "kind": "enum_value", + "name": "Plane", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.Sphere", + "kind": "enum_value", + "name": "Sphere", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SculptType.Torus", + "kind": "enum_value", + "name": "Torus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SculptType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SculptType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.SoundFlags", + "namespace": "LibreMetaverse", + "name": "SoundFlags", + "signature": "LibreMetaverse.SoundFlags", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [ + { + "type": "System.FlagsAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.SoundFlags.Loop", + "kind": "enum_value", + "name": "Loop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "1" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SoundFlags.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "0" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SoundFlags.Queue", + "kind": "enum_value", + "name": "Queue", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "16" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SoundFlags.Stop", + "kind": "enum_value", + "name": "Stop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "32" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SoundFlags.SyncMaster", + "kind": "enum_value", + "name": "SyncMaster", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "2" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SoundFlags.SyncPending", + "kind": "enum_value", + "name": "SyncPending", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "8" + }, + "numeric_width": 8, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.SoundFlags.SyncSlave", + "kind": "enum_value", + "name": "SyncSlave", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SoundFlags", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.SoundFlags", + "value": "4" + }, + "numeric_width": 8, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.TokenBucket", + "namespace": "LibreMetaverse", + "name": "TokenBucket", + "signature": "LibreMetaverse.TokenBucket", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.TokenBucket.#ctor(LibreMetaverse.TokenBucket,System.Int32,System.Int32)", + "kind": "constructor", + "name": "TokenBucket", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "parent", + "type": "LibreMetaverse.TokenBucket", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "maxBurst", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dripRate", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32)", + "kind": "method", + "name": "RemoveTokens", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32,System.Boolean@)", + "kind": "method", + "name": "RemoveTokens", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "amount", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dripSucceeded", + "type": "System.Boolean\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TokenBucket.Content", + "kind": "property", + "name": "Content", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TokenBucket.DripRate", + "kind": "property", + "name": "DripRate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TokenBucket.MaxBurst", + "kind": "property", + "name": "MaxBurst", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.TokenBucket.Parent", + "kind": "property", + "name": "Parent", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.TokenBucket", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.UUID", + "namespace": "LibreMetaverse", + "name": "UUID", + "signature": "LibreMetaverse.UUID", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IComparable\u003CLibreMetaverse.UUID\u003E", + "System.IEquatable\u003CLibreMetaverse.UUID\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.UUID.Zero", + "kind": "field", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "UUID", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "source", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.#ctor(System.Guid)", + "kind": "constructor", + "name": "UUID", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "Guid", + "type": "System.Guid", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.#ctor(System.String)", + "kind": "constructor", + "name": "UUID", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.#ctor(System.UInt64)", + "kind": "constructor", + "name": "UUID", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.CRC", + "kind": "method", + "name": "CRC", + "static": false, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.Combine(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "Combine", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "first", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "second", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.CompareTo(LibreMetaverse.UUID)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.Deconstruct(System.Guid@)", + "kind": "method", + "name": "Deconstruct", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "Guid", + "type": "System.Guid\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.UUID.Equals(LibreMetaverse.UUID)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.UUID.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.UUID.FromBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "FromBytes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "source", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.UUID.GetULong", + "kind": "method", + "name": "GetULong", + "static": false, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.Random", + "kind": "method", + "name": "Random", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.SecureRandom", + "kind": "method", + "name": "SecureRandom", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.TryParse(System.String,LibreMetaverse.UUID@)", + "kind": "method", + "name": "TryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.UUID\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.op_Equality(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.UUID.op_ExclusiveOr(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "op_ExclusiveOr", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "lhs", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.op_Explicit(System.String)~LibreMetaverse.UUID", + "kind": "method", + "name": "op_Explicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.UUID.op_Inequality(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "left", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "right", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.UUID.Guid", + "kind": "property", + "name": "Guid", + "static": false, + "visibility": "public", + "type": "System.Guid", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Utils", + "namespace": "LibreMetaverse", + "name": "Utils", + "signature": "LibreMetaverse.Utils", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Utils.DEG_TO_RAD", + "kind": "constant", + "name": "DEG_TO_RAD", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "0.017453292" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.E", + "kind": "constant", + "name": "E", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "2.7182817" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.EmptyBytes", + "kind": "field", + "name": "EmptyBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.EnUsCulture", + "kind": "field", + "name": "EnUsCulture", + "static": true, + "visibility": "public", + "type": "System.Globalization.CultureInfo", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.Epoch", + "kind": "field", + "name": "Epoch", + "static": true, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.InternStrings", + "kind": "field", + "name": "InternStrings", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.LOG10E", + "kind": "constant", + "name": "LOG10E", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "0.4342945" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.LOG2E", + "kind": "constant", + "name": "LOG2E", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "1.442695" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.PI", + "kind": "constant", + "name": "PI", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "3.1415927" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.PI_OVER_FOUR", + "kind": "constant", + "name": "PI_OVER_FOUR", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "0.7853982" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.PI_OVER_TWO", + "kind": "constant", + "name": "PI_OVER_TWO", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "1.5707964" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.RAD_TO_DEG", + "kind": "constant", + "name": "RAD_TO_DEG", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "57.29578" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.TWO_PI", + "kind": "constant", + "name": "TWO_PI", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Single", + "value": "6.2831855" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.AssetTypeToString(LibreMetaverse.AssetType)", + "kind": "method", + "name": "AssetTypeToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.AssetType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte,System.Single,System.Single)", + "kind": "method", + "name": "ByteToFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lower", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "kind": "method", + "name": "ByteToFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lower", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToDouble(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToDouble", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToFloat(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.Int32,System.String)", + "kind": "method", + "name": "BytesToHexString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "length", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fieldName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.String)", + "kind": "method", + "name": "BytesToHexString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "fieldName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[])", + "kind": "method", + "name": "BytesToInt", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToInt", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[])", + "kind": "method", + "name": "BytesToInt16", + "static": true, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToInt16", + "static": true, + "visibility": "public", + "type": "System.Int16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[])", + "kind": "method", + "name": "BytesToInt64", + "static": true, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToInt64", + "static": true, + "visibility": "public", + "type": "System.Int64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[])", + "kind": "method", + "name": "BytesToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[],System.Int32,System.Int32)", + "kind": "method", + "name": "BytesToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "index", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "count", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[])", + "kind": "method", + "name": "BytesToUInt", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToUInt", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[])", + "kind": "method", + "name": "BytesToUInt16", + "static": true, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[],System.Int32)", + "kind": "method", + "name": "BytesToUInt16", + "static": true, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.BytesToUInt64(System.Byte[])", + "kind": "method", + "name": "BytesToUInt64", + "static": true, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Clamp(System.Double,System.Double,System.Double)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Clamp(System.Int32,System.Int32,System.Int32)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Clamp(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.CopyBytes(System.Byte[])", + "kind": "method", + "name": "CopyBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Utils.DateTimeToUnixTime(System.DateTime)", + "kind": "method", + "name": "DateTimeToUnixTime", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "time", + "type": "System.DateTime", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Distance(System.Single,System.Single)", + "kind": "method", + "name": "Distance", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double)", + "kind": "method", + "name": "DoubleToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double,System.Byte[],System.Int32)", + "kind": "method", + "name": "DoubleToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.DoubleToBytesBig(System.Double)", + "kind": "method", + "name": "DoubleToBytesBig", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.EnumToText(System.Enum)", + "kind": "method", + "name": "EnumToText", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Enum", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Looks up enum field custom attributes via runtime reflection. Not AOT-safe." + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Utils.EnumTryParse\u0060\u00601(System.String,\u0060\u00600@)", + "kind": "method", + "name": "EnumTryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "T", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "strType", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "T\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute", + "constructor_arguments": [ + { + "type": "System.Boolean", + "value": "False" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.FloatToByte(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "FloatToByte", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lower", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single)", + "kind": "method", + "name": "FloatToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single,System.Byte[],System.Int32)", + "kind": "method", + "name": "FloatToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.FloatToUInt16(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "FloatToUInt16", + "static": true, + "visibility": "public", + "type": "System.UInt16", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lower", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.FolderTypeToString(LibreMetaverse.FolderType)", + "kind": "method", + "name": "FolderTypeToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.FolderType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.GetRunningPlatform", + "kind": "method", + "name": "GetRunningPlatform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utils.Platform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.GetUnixTime", + "kind": "method", + "name": "GetUnixTime", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "kind": "method", + "name": "Hermite", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tangent1", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tangent2", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "kind": "method", + "name": "Hermite", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tangent1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tangent2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.HexStringToBytes(System.String,System.Boolean)", + "kind": "method", + "name": "HexStringToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "hexString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handleDirty", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.HostnameToIPv4(System.String)", + "kind": "method", + "name": "HostnameToIPv4", + "static": true, + "visibility": "public", + "type": "System.Net.IPAddress", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "hostname", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.IPToUInt(System.Net.IPAddress)", + "kind": "method", + "name": "IPToUInt", + "static": true, + "visibility": "public", + "type": "System.UInt32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.Net.IPAddress", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16)", + "kind": "method", + "name": "Int16ToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16,System.Byte[],System.Int32)", + "kind": "method", + "name": "Int16ToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64)", + "kind": "method", + "name": "Int64ToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64,System.Byte[],System.Int32)", + "kind": "method", + "name": "Int64ToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32)", + "kind": "method", + "name": "IntToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32,System.Byte[],System.Int32)", + "kind": "method", + "name": "IntToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.IntToBytesBig(System.Int32)", + "kind": "method", + "name": "IntToBytesBig", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.InventoryTypeToString(LibreMetaverse.InventoryType)", + "kind": "method", + "name": "InventoryTypeToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.InventoryType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.IsFinite(System.Double)", + "kind": "method", + "name": "IsFinite", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.IsFinite(System.Single)", + "kind": "method", + "name": "IsFinite", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Lerp(System.Double,System.Double,System.Double)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Lerp(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.LongToUInts(System.UInt64,System.UInt32@,System.UInt32@)", + "kind": "method", + "name": "LongToUInts", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "System.UInt32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "c", + "type": "System.UInt32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.MD5(System.Byte[])", + "kind": "method", + "name": "MD5", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.MD5(System.String)", + "kind": "method", + "name": "MD5", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.MD5String(System.String)", + "kind": "method", + "name": "MD5String", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.PBKDF2(System.String)", + "kind": "method", + "name": "PBKDF2", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.RandomDouble", + "kind": "method", + "name": "RandomDouble", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.ReadDoubleLittleEndian(System.Byte[],System.Int32)", + "kind": "method", + "name": "ReadDoubleLittleEndian", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "src", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.ReadSingleLittleEndian(System.Byte[],System.Int32)", + "kind": "method", + "name": "ReadSingleLittleEndian", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "src", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Round(System.Single)", + "kind": "method", + "name": "Round", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SHA1(System.Byte[])", + "kind": "method", + "name": "SHA1", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SHA1String(System.String)", + "kind": "method", + "name": "SHA1String", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SHA256(System.Byte[])", + "kind": "method", + "name": "SHA256", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SHA256String(System.String)", + "kind": "method", + "name": "SHA256String", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SaleTypeToString(LibreMetaverse.SaleType)", + "kind": "method", + "name": "SaleTypeToString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.SaleType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Double,System.Double,System.Double)", + "kind": "method", + "name": "SmoothStep", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Single,System.Single,System.Single)", + "kind": "method", + "name": "SmoothStep", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.StringToAssetType(System.String)", + "kind": "method", + "name": "StringToAssetType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AssetType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.StringToAttachmentPoint(System.String)", + "kind": "method", + "name": "StringToAttachmentPoint", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.AttachmentPoint", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.StringToBytes(System.String)", + "kind": "method", + "name": "StringToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.StringToFolderType(System.String)", + "kind": "method", + "name": "StringToFolderType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.FolderType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.StringToInventoryType(System.String)", + "kind": "method", + "name": "StringToInventoryType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.InventoryType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.StringToSaleType(System.String)", + "kind": "method", + "name": "StringToSaleType", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.SaleType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.SwapWords(System.Byte)", + "kind": "method", + "name": "SwapWords", + "static": true, + "visibility": "public", + "type": "System.Byte", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Byte", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.Swap\u0060\u00601(\u0060\u00600@,\u0060\u00600@)", + "kind": "method", + "name": "Swap", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [ + { + "name": "T", + "position": 0, + "variance": "invariant", + "reference_type": false, + "value_type": false, + "default_constructor": false, + "allow_by_ref_like": false, + "constraints": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "parameters": [ + { + "name": "lhs", + "type": "T\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rhs", + "type": "T\u0026", + "passing": "ref", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.ToDegrees(System.Single)", + "kind": "method", + "name": "ToDegrees", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "radians", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.ToRadians(System.Single)", + "kind": "method", + "name": "ToRadians", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "degrees", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.TryParseDouble(System.String,System.Double@)", + "kind": "method", + "name": "TryParseDouble", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "System.Double\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.TryParseHex(System.String,System.UInt32@)", + "kind": "method", + "name": "TryParseHex", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "System.UInt32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.TryParseSingle(System.String,System.Single@)", + "kind": "method", + "name": "TryParseSingle", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "s", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "System.Single\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16)", + "kind": "method", + "name": "UInt16ToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16,System.Byte[],System.Int32)", + "kind": "method", + "name": "UInt16ToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt16ToBytesBig(System.UInt16,System.Byte[],System.Int32)", + "kind": "method", + "name": "UInt16ToBytesBig", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "kind": "method", + "name": "UInt16ToFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "bytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lower", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.UInt16,System.Single,System.Single)", + "kind": "method", + "name": "UInt16ToFloat", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lower", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "upper", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64)", + "kind": "method", + "name": "UInt64ToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64,System.Byte[],System.Int32)", + "kind": "method", + "name": "UInt64ToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64)", + "kind": "method", + "name": "UInt64ToBytesBig", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64,System.Byte[],System.Int32)", + "kind": "method", + "name": "UInt64ToBytesBig", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32)", + "kind": "method", + "name": "UIntToBytes", + "static": true, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32,System.Byte[],System.Int32)", + "kind": "method", + "name": "UIntToBytes", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UIntToBytesBig(System.UInt32,System.Byte[],System.Int32)", + "kind": "method", + "name": "UIntToBytesBig", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UIntToHexString(System.UInt32)", + "kind": "method", + "name": "UIntToHexString", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "i", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UIntsToLong(System.UInt32,System.UInt32)", + "kind": "method", + "name": "UIntsToLong", + "static": true, + "visibility": "public", + "type": "System.UInt64", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UnixTimeToDateTime(System.Int32)", + "kind": "method", + "name": "UnixTimeToDateTime", + "static": true, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "timestamp", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.UnixTimeToDateTime(System.UInt32)", + "kind": "method", + "name": "UnixTimeToDateTime", + "static": true, + "visibility": "public", + "type": "System.DateTime", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "timestamp", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.WriteDoubleLittleEndian(System.Byte[],System.Int32,System.Double)", + "kind": "method", + "name": "WriteDoubleLittleEndian", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utils.WriteSingleLittleEndian(System.Byte[],System.Int32,System.Single)", + "kind": "method", + "name": "WriteSingleLittleEndian", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Utils.Platform", + "namespace": "LibreMetaverse", + "name": "Platform", + "signature": "LibreMetaverse.Utils.Platform", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Utils.Platform.Linux", + "kind": "enum_value", + "name": "Linux", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utils.Platform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utils.Platform", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.Platform.OSX", + "kind": "enum_value", + "name": "OSX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utils.Platform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utils.Platform", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.Platform.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utils.Platform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utils.Platform", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.Platform.Windows", + "kind": "enum_value", + "name": "Windows", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utils.Platform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utils.Platform", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utils.Platform.WindowsCE", + "kind": "enum_value", + "name": "WindowsCE", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utils.Platform", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utils.Platform", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Vector2", + "namespace": "LibreMetaverse", + "name": "Vector2", + "signature": "LibreMetaverse.Vector2", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IComparable\u003CLibreMetaverse.Vector2\u003E", + "System.IEquatable\u003CLibreMetaverse.Vector2\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Vector2.One", + "kind": "field", + "name": "One", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector2.UnitX", + "kind": "field", + "name": "UnitX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector2.UnitY", + "kind": "field", + "name": "UnitY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector2.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector2.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector2.Zero", + "kind": "field", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.#ctor(LibreMetaverse.Vector2)", + "kind": "constructor", + "name": "Vector2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.#ctor(System.Single)", + "kind": "constructor", + "name": "Vector2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.#ctor(System.Single,System.Single)", + "kind": "constructor", + "name": "Vector2", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Add(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.ApproxEquals(LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "ApproxEquals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vec", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tolerance", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Clamp(LibreMetaverse.Vector2,LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.CompareTo(LibreMetaverse.Vector2)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Distance(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Distance", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.DistanceSquared(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "DistanceSquared", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Divide(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Divide(LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Dot(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Dot", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Equals(LibreMetaverse.Vector2)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.FromBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.IsFinite", + "kind": "method", + "name": "IsFinite", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.LengthSquared", + "kind": "method", + "name": "LengthSquared", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Lerp(LibreMetaverse.Vector2,LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Max(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Max", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Min(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Min", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Multiply(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Multiply(LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Negate(LibreMetaverse.Vector2)", + "kind": "method", + "name": "Negate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Normalize", + "kind": "method", + "name": "Normalize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Normalize(LibreMetaverse.Vector2)", + "kind": "method", + "name": "Normalize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.SmoothStep(LibreMetaverse.Vector2,LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "SmoothStep", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Subtract(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "Subtract", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.ToRawString", + "kind": "method", + "name": "ToRawString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.Transform(LibreMetaverse.Vector2,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Transform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.TransformNormal(LibreMetaverse.Vector2,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "TransformNormal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.TryParse(System.String,LibreMetaverse.Vector2@)", + "kind": "method", + "name": "TryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.Vector2\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Addition(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Division(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Division(LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Equality(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Inequality(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Multiply(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Multiply(LibreMetaverse.Vector2,System.Single)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_Subtraction(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector2.op_UnaryNegation(LibreMetaverse.Vector2)", + "kind": "method", + "name": "op_UnaryNegation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector2", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Vector3", + "namespace": "LibreMetaverse", + "name": "Vector3", + "signature": "LibreMetaverse.Vector3", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IComparable\u003CLibreMetaverse.Vector3\u003E", + "System.IEquatable\u003CLibreMetaverse.Vector3\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.IsReadOnlyAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Vector3.One", + "kind": "field", + "name": "One", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.UnitX", + "kind": "field", + "name": "UnitX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.UnitY", + "kind": "field", + "name": "UnitY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.UnitZ", + "kind": "field", + "name": "UnitZ", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3.Zero", + "kind": "field", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.#ctor(LibreMetaverse.Vector2,System.Single)", + "kind": "constructor", + "name": "Vector3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.#ctor(LibreMetaverse.Vector3d)", + "kind": "constructor", + "name": "Vector3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "Vector3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Single)", + "kind": "constructor", + "name": "Vector3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Vector3", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Add(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.ApproxEquals(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "ApproxEquals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vec", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tolerance", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Clamp(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.CompareTo(LibreMetaverse.Vector3)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Cross(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Cross", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Distance(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Distance", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.DistanceSquared(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "DistanceSquared", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Divide(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Divide(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Dot(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Dot", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Equals(LibreMetaverse.Vector3)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.FromBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "FromBytes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.IsFinite", + "kind": "method", + "name": "IsFinite", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.LengthSquared", + "kind": "method", + "name": "LengthSquared", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Lerp(LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Mag(LibreMetaverse.Vector3)", + "kind": "method", + "name": "Mag", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Max(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Max", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Min(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Min", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Multiply(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Multiply(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Negate(LibreMetaverse.Vector3)", + "kind": "method", + "name": "Negate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Normalize(LibreMetaverse.Vector3)", + "kind": "method", + "name": "Normalize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.RotationBetween(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "RotationBetween", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Quaternion", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "a", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "b", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.SmoothStep(LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "SmoothStep", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Subtract(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Subtract", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.ToRawString", + "kind": "method", + "name": "ToRawString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.Transform(LibreMetaverse.Vector3,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Transform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.TransformNormal(LibreMetaverse.Vector3,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "TransformNormal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.TryParse(System.String,LibreMetaverse.Vector3@)", + "kind": "method", + "name": "TryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.Vector3\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Addition(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Division(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Division(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Equality(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Explicit(LibreMetaverse.Vector3d)~LibreMetaverse.Vector3", + "kind": "method", + "name": "op_Explicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Inequality(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Modulus(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Modulus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Multiply(LibreMetaverse.Vector3,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Multiply(LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vec", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rot", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Multiply(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Multiply(LibreMetaverse.Vector3,System.Single)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_Subtraction(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3.op_UnaryNegation(LibreMetaverse.Vector3)", + "kind": "method", + "name": "op_UnaryNegation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Vector3d", + "namespace": "LibreMetaverse", + "name": "Vector3d", + "signature": "LibreMetaverse.Vector3d", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IComparable\u003CLibreMetaverse.Vector3d\u003E", + "System.IEquatable\u003CLibreMetaverse.Vector3d\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Vector3d.One", + "kind": "field", + "name": "One", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.UnitX", + "kind": "field", + "name": "UnitX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.UnitY", + "kind": "field", + "name": "UnitY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.UnitZ", + "kind": "field", + "name": "UnitZ", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector3d.Zero", + "kind": "field", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.#ctor(LibreMetaverse.Vector3)", + "kind": "constructor", + "name": "Vector3d", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.#ctor(LibreMetaverse.Vector3d)", + "kind": "constructor", + "name": "Vector3d", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "Vector3d", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Double)", + "kind": "constructor", + "name": "Vector3d", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Double,System.Double,System.Double)", + "kind": "constructor", + "name": "Vector3d", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Add(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.ApproxEquals(LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "ApproxEquals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vec", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tolerance", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Clamp(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.CompareTo(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Cross(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Cross", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Distance(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Distance", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.DistanceSquared(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "DistanceSquared", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Divide(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Divide(LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Dot(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Dot", + "static": true, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Equals(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.FromBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.IsFinite", + "kind": "method", + "name": "IsFinite", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.LengthSquared", + "kind": "method", + "name": "LengthSquared", + "static": false, + "visibility": "public", + "type": "System.Double", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Lerp(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Max(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Max", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Min(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Min", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Multiply(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Multiply(LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Negate(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Negate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Normalize", + "kind": "method", + "name": "Normalize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Normalize(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Normalize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.SmoothStep(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "SmoothStep", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.Subtract(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "Subtract", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.ToRawString", + "kind": "method", + "name": "ToRawString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.TryParse(System.String,LibreMetaverse.Vector3d@)", + "kind": "method", + "name": "TryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.Vector3d\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Addition(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Division(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Division(LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Equality(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Implicit(LibreMetaverse.Vector3)~LibreMetaverse.Vector3d", + "kind": "method", + "name": "op_Implicit", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Inequality(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Modulus(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Modulus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Multiply(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Multiply(LibreMetaverse.Vector3d,System.Double)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Double", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_Subtraction(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector3d.op_UnaryNegation(LibreMetaverse.Vector3d)", + "kind": "method", + "name": "op_UnaryNegation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Vector4", + "namespace": "LibreMetaverse", + "name": "Vector4", + "signature": "LibreMetaverse.Vector4", + "kind": "struct", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [ + "System.IComparable\u003CLibreMetaverse.Vector4\u003E", + "System.IEquatable\u003CLibreMetaverse.Vector4\u003E" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + }, + { + "type": "System.SerializableAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Vector4.One", + "kind": "field", + "name": "One", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.UnitW", + "kind": "field", + "name": "UnitW", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.UnitX", + "kind": "field", + "name": "UnitX", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.UnitY", + "kind": "field", + "name": "UnitY", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.UnitZ", + "kind": "field", + "name": "UnitZ", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.W", + "kind": "field", + "name": "W", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Vector4.Zero", + "kind": "field", + "name": "Zero", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.#ctor(LibreMetaverse.Vector2,System.Single,System.Single)", + "kind": "constructor", + "name": "Vector4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.#ctor(LibreMetaverse.Vector3,System.Single)", + "kind": "constructor", + "name": "Vector4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.#ctor(LibreMetaverse.Vector4)", + "kind": "constructor", + "name": "Vector4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Byte[],System.Int32)", + "kind": "constructor", + "name": "Vector4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single)", + "kind": "constructor", + "name": "Vector4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "kind": "constructor", + "name": "Vector4", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "x", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "y", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "z", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "w", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Add(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Add", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.ApproxEquals(LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "ApproxEquals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vec", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "tolerance", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Clamp(LibreMetaverse.Vector4,LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Clamp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "min", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "max", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.CompareTo(LibreMetaverse.Vector4)", + "kind": "method", + "name": "CompareTo", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Distance(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Distance", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.DistanceSquared(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "DistanceSquared", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Divide(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Divide(LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "Divide", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Dot(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Dot", + "static": true, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "vector2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Equals(LibreMetaverse.Vector4)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "other", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Equals(System.Object)", + "kind": "method", + "name": "Equals", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "obj", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.FromBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "FromBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "byteArray", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.GetBytes", + "kind": "method", + "name": "GetBytes", + "static": false, + "visibility": "public", + "type": "System.Byte[]", + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.GetHashCode", + "kind": "method", + "name": "GetHashCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.IsFinite", + "kind": "method", + "name": "IsFinite", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Length", + "kind": "method", + "name": "Length", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.LengthSquared", + "kind": "method", + "name": "LengthSquared", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Lerp(LibreMetaverse.Vector4,LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "Lerp", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Max(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Max", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Min(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Min", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Multiply(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Multiply(LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Negate(LibreMetaverse.Vector4)", + "kind": "method", + "name": "Negate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Normalize", + "kind": "method", + "name": "Normalize", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Normalize(LibreMetaverse.Vector4)", + "kind": "method", + "name": "Normalize", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Parse(System.String)", + "kind": "method", + "name": "Parse", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.SmoothStep(LibreMetaverse.Vector4,LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "SmoothStep", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "amount", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Subtract(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "Subtract", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.ToBytes(System.Byte[],System.Int32)", + "kind": "method", + "name": "ToBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "dest", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "pos", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.ToRawString", + "kind": "method", + "name": "ToRawString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.ToString", + "kind": "method", + "name": "ToString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Transform(LibreMetaverse.Vector2,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Transform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector2", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Transform(LibreMetaverse.Vector3,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Transform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "position", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.Transform(LibreMetaverse.Vector4,LibreMetaverse.Matrix4)", + "kind": "method", + "name": "Transform", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "vector", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "matrix", + "type": "LibreMetaverse.Matrix4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.TryParse(System.String,LibreMetaverse.Vector4@)", + "kind": "method", + "name": "TryParse", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "val", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "result", + "type": "LibreMetaverse.Vector4\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Addition(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_Addition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Division(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Division(LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "op_Division", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "divider", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Equality(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_Equality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Inequality(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_Inequality", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Multiply(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Multiply(LibreMetaverse.Vector4,System.Single)", + "kind": "method", + "name": "op_Multiply", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scaleFactor", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_Subtraction(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_Subtraction", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value1", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value2", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Vector4.op_UnaryNegation(LibreMetaverse.Vector4)", + "kind": "method", + "name": "op_UnaryNegation", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Vector4", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "value", + "type": "LibreMetaverse.Vector4", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.WearableType", + "namespace": "LibreMetaverse", + "name": "WearableType", + "signature": "LibreMetaverse.WearableType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Byte", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.WearableType.Alpha", + "kind": "enum_value", + "name": "Alpha", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "13" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Alpha" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Eyes", + "kind": "enum_value", + "name": "Eyes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "3" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Eyes" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Gloves", + "kind": "enum_value", + "name": "Gloves", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "9" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Gloves" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Hair", + "kind": "enum_value", + "name": "Hair", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "2" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Hair" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Invalid", + "kind": "enum_value", + "name": "Invalid", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "255" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Invalid" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Jacket", + "kind": "enum_value", + "name": "Jacket", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "8" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Jacket" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Pants", + "kind": "enum_value", + "name": "Pants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "5" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Pants" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Physics", + "kind": "enum_value", + "name": "Physics", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "15" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Physics" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Shape", + "kind": "enum_value", + "name": "Shape", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "0" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Shape" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Shirt", + "kind": "enum_value", + "name": "Shirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "4" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Shirt" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Shoes", + "kind": "enum_value", + "name": "Shoes", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "6" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Shoes" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Skin", + "kind": "enum_value", + "name": "Skin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "1" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Skin" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Skirt", + "kind": "enum_value", + "name": "Skirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "12" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Skirt" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Socks", + "kind": "enum_value", + "name": "Socks", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "7" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Socks" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Tattoo", + "kind": "enum_value", + "name": "Tattoo", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "14" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Tattoo" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Underpants", + "kind": "enum_value", + "name": "Underpants", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "11" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Underpants" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Undershirt", + "kind": "enum_value", + "name": "Undershirt", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "10" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Undershirt" + } + } + ] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.WearableType.Universal", + "kind": "enum_value", + "name": "Universal", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.WearableType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.WearableType", + "value": "16" + }, + "numeric_width": 8, + "attributes": [ + { + "type": "LibreMetaverse.EnumInfoAttribute", + "constructor_arguments": [], + "named_arguments": [ + { + "name": "Text", + "value": { + "type": "System.String", + "value": "Universal" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Utilities", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "5d1f4808-11e9-47e8-b0b3-95cb14e336d9", + "file": "LibreMetaverse.Utilities.dll", + "sha256": "eaf456e9afe3192b1edb2293db07da723a3120823f622ba1df487ed6d9aa7ae4" + }, + "counts": { + "catalog_types": 3, + "catalog_members": 13, + "metadata_types": 3, + "metadata_members": 13 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.Utilities.ConnectionManager", + "namespace": "LibreMetaverse.Utilities", + "name": "ConnectionManager", + "signature": "LibreMetaverse.Utilities.ConnectionManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.#ctor(LibreMetaverse.GridClient,System.Int32)", + "kind": "constructor", + "name": "ConnectionManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "timerFrequency", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "kind": "method", + "name": "PersistentLogin", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "firstName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "lastName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "userAgent", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "start", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "author", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Utilities.ConnectionManager.\u003CPersistentLogin\u003Ed__7" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.StayInSim(System.UInt64,LibreMetaverse.Vector3)", + "kind": "method", + "name": "StayInSim", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "handle", + "type": "System.UInt64", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "desiredPosition", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.Stop", + "kind": "method", + "name": "Stop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Utilities.Realism", + "namespace": "LibreMetaverse.Utilities", + "name": "Realism", + "signature": "LibreMetaverse.Utilities.Realism", + "kind": "class", + "visibility": "public", + "abstract": true, + "sealed": true, + "static": true, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String)", + "kind": "method", + "name": "Chat", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32)", + "kind": "method", + "name": "Chat", + "static": true, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ChatType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cps", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.Realism.ChatAsync(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "ChatAsync", + "static": true, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.ChatType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cps", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cancellationToken", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Utilities.Realism.\u003CChatAsync\u003Ed__4" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.Realism.Shoot(LibreMetaverse.GridClient)", + "kind": "method", + "name": "Shoot", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Utilities.Realism.Shoot(LibreMetaverse.GridClient,LibreMetaverse.Vector3)", + "kind": "method", + "name": "Shoot", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "target", + "type": "LibreMetaverse.Vector3", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Utilities.WaterType", + "namespace": "LibreMetaverse.Utilities", + "name": "WaterType", + "signature": "LibreMetaverse.Utilities.WaterType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Utilities.WaterType.Dry", + "kind": "enum_value", + "name": "Dry", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utilities.WaterType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utilities.WaterType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utilities.WaterType.Underwater", + "kind": "enum_value", + "name": "Underwater", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utilities.WaterType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utilities.WaterType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utilities.WaterType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utilities.WaterType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utilities.WaterType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Utilities.WaterType.Waterfront", + "kind": "enum_value", + "name": "Waterfront", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Utilities.WaterType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Utilities.WaterType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Voice.Vivox", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "70331c00-1349-4623-86ac-15853cc42947", + "file": "LibreMetaverse.Voice.Vivox.dll", + "sha256": "c56e89f02448be79ec7ff5d9ca505ea04de19e53fdc7aade1c1be3fab955002e" + }, + "counts": { + "catalog_types": 64, + "catalog_members": 531, + "metadata_types": 64, + "metadata_members": 531 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "TCPPipe", + "signature": "LibreMetaverse.Voice.Vivox.TCPPipe", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnected", + "kind": "event", + "name": "OnDisconnected", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLine", + "kind": "event", + "name": "OnReceiveLine", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.#ctor", + "kind": "constructor", + "name": "TCPPipe", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.Connect(System.String,System.Int32)", + "kind": "method", + "name": "Connect", + "static": false, + "visibility": "public", + "type": "System.Net.Sockets.SocketException", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "port", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.Disconnect", + "kind": "method", + "name": "Disconnect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.SendData(System.Byte[])", + "kind": "method", + "name": "SendData", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "data", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.SendLine(System.String)", + "kind": "method", + "name": "SendLine", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.TCPPipe.Connected", + "kind": "property", + "name": "Connected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "OnDisconnectedCallback", + "signature": "LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.Invoke(System.Net.Sockets.SocketException)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "se", + "type": "System.Net.Sockets.SocketException", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "OnDisconnectedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.BeginInvoke(System.Net.Sockets.SocketException,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "se", + "type": "System.Net.Sockets.SocketException", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.Invoke(System.Net.Sockets.SocketException)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "se", + "type": "System.Net.Sockets.SocketException", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "OnReceiveLineCallback", + "signature": "LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.Invoke(System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "line", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "OnReceiveLineCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "line", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.Invoke(System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "line", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceGateway", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAccountLoginResponse", + "kind": "event", + "name": "OnAccountLoginResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAccountLoginStateChangeEvent", + "kind": "event", + "name": "OnAccountLoginStateChangeEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAuxAudioPropertiesEvent", + "kind": "event", + "name": "OnAuxAudioPropertiesEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAuxGetCaptureDevicesResponse", + "kind": "event", + "name": "OnAuxGetCaptureDevicesResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAuxGetRenderDevicesResponse", + "kind": "event", + "name": "OnAuxGetRenderDevicesResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnConnectorCreateResponse", + "kind": "event", + "name": "OnConnectorCreateResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnDaemonConnected", + "kind": "event", + "name": "OnDaemonConnected", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnDaemonCouldntConnect", + "kind": "event", + "name": "OnDaemonCouldntConnect", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnDaemonCouldntRun", + "kind": "event", + "name": "OnDaemonCouldntRun", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnDaemonDisconnected", + "kind": "event", + "name": "OnDaemonDisconnected", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnDaemonExited", + "kind": "event", + "name": "OnDaemonExited", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnDaemonRunning", + "kind": "event", + "name": "OnDaemonRunning", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionAddedEvent", + "kind": "event", + "name": "OnSessionAddedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionCreate", + "kind": "event", + "name": "OnSessionCreate", + "static": false, + "visibility": "public", + "type": "System.EventHandler", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionCreateResponse", + "kind": "event", + "name": "OnSessionCreateResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionGroupAddedEvent", + "kind": "event", + "name": "OnSessionGroupAddedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionMediaEvent", + "kind": "event", + "name": "OnSessionMediaEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionNewEvent", + "kind": "event", + "name": "OnSessionNewEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantAddedEvent", + "kind": "event", + "name": "OnSessionParticipantAddedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantPropertiesEvent", + "kind": "event", + "name": "OnSessionParticipantPropertiesEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantRemovedEvent", + "kind": "event", + "name": "OnSessionParticipantRemovedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantStateChangeEvent", + "kind": "event", + "name": "OnSessionParticipantStateChangeEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantUpdatedEvent", + "kind": "event", + "name": "OnSessionParticipantUpdatedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionRemove", + "kind": "event", + "name": "OnSessionRemove", + "static": false, + "visibility": "public", + "type": "System.EventHandler", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionRemovedEvent", + "kind": "event", + "name": "OnSessionRemovedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionStateChangeEvent", + "kind": "event", + "name": "OnSessionStateChangeEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionUpdatedEvent", + "kind": "event", + "name": "OnSessionUpdatedEvent", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnVoiceConnectionChange", + "kind": "event", + "name": "OnVoiceConnectionChange", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnVoiceMicTest", + "kind": "event", + "name": "OnVoiceMicTest", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnVoiceResponse", + "kind": "event", + "name": "OnVoiceResponse", + "static": false, + "visibility": "public", + "type": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "VoiceGateway", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "c", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "kind": "method", + "name": "AccountLogin", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ConnectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AccountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AccountPassword", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AudioSessionAnswerMode", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AccountURI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantPropertyFrequency", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "EnableBuddiesAndPresence", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogout(System.String)", + "kind": "method", + "name": "AccountLogout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "AccountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxCaptureAudioStart(System.Int32)", + "kind": "method", + "name": "AuxCaptureAudioStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "duration", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxCaptureAudioStop", + "kind": "method", + "name": "AuxCaptureAudioStop", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxGetCaptureDevices", + "kind": "method", + "name": "AuxGetCaptureDevices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxGetRenderDevices", + "kind": "method", + "name": "AuxGetRenderDevices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetCaptureDevice(System.String)", + "kind": "method", + "name": "AuxSetCaptureDevice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "captureDeviceSpecifier", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetMicLevel(System.Int32)", + "kind": "method", + "name": "AuxSetMicLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetRenderDevice(System.String)", + "kind": "method", + "name": "AuxSetRenderDevice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "renderDeviceSpecifier", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetSpeakerLevel(System.Int32)", + "kind": "method", + "name": "AuxSetSpeakerLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectToDaemon(System.String,System.Int32)", + "kind": "method", + "name": "ConnectToDaemon", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "port", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorCreate(System.String,System.String,System.UInt16,System.UInt16,LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings)", + "kind": "method", + "name": "ConnectorCreate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "clientName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountManagementServer", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "minimumPort", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "maximumPort", + "type": "System.UInt16", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "logging", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorInitiateShutdown(System.String)", + "kind": "method", + "name": "ConnectorInitiateShutdown", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalMic(System.String,System.Boolean)", + "kind": "method", + "name": "ConnectorMuteLocalMic", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalSpeaker(System.String,System.Boolean)", + "kind": "method", + "name": "ConnectorMuteLocalSpeaker", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalMicVolume(System.String,System.Int32)", + "kind": "method", + "name": "ConnectorSetLocalMicVolume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalSpeakerVolume(System.String,System.Int32)", + "kind": "method", + "name": "ConnectorSetLocalSpeakerVolume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "value", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.MakeXML(System.String,System.String)", + "kind": "method", + "name": "MakeXML", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String)", + "kind": "method", + "name": "Request", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String,System.String)", + "kind": "method", + "name": "Request", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "action", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "requestXML", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SIPFromUUID(LibreMetaverse.UUID)", + "kind": "method", + "name": "SIPFromUUID", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionConnect(System.String,System.String)", + "kind": "method", + "name": "SessionConnect", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AudioMedia", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "kind": "method", + "name": "SessionCreate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "AccountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "session_uri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "JoinAudio", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "JoinText", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "PasswordHashAlgorithm", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStart(System.String,System.Boolean)", + "kind": "method", + "name": "SessionRenderAudioStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "soundFilePath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Loop", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStop(System.String)", + "kind": "method", + "name": "SessionRenderAudioStop", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SoundFilePath", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSet3DPosition(System.String,LibreMetaverse.Voice.Vivox.VoicePosition,LibreMetaverse.Voice.Vivox.VoicePosition)", + "kind": "method", + "name": "SessionSet3DPosition", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SpeakerPosition", + "type": "LibreMetaverse.Voice.Vivox.VoicePosition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ListenerPosition", + "type": "LibreMetaverse.Voice.Vivox.VoicePosition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSetParticipantVolumeForMe(System.String,System.String,System.Int32)", + "kind": "method", + "name": "SessionSetParticipantVolumeForMe", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantURI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionTerminate(System.String)", + "kind": "method", + "name": "SessionTerminate", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Start", + "kind": "method", + "name": "Start", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.StartDaemon(System.String,System.String)", + "kind": "method", + "name": "StartDaemon", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "args", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Stop", + "kind": "method", + "name": "Stop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.StopDaemon", + "kind": "method", + "name": "StopDaemon", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.CurrentCaptureDevice", + "kind": "property", + "name": "CurrentCaptureDevice", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonIsConnected", + "kind": "property", + "name": "DaemonIsConnected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonIsRunning", + "kind": "property", + "name": "DaemonIsRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.MicLevel", + "kind": "property", + "name": "MicLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "unknown", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.MicMute", + "kind": "property", + "name": "MicMute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "unknown", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.PlaybackDevice", + "kind": "property", + "name": "PlaybackDevice", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.RequestId", + "kind": "property", + "name": "RequestId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.SpkrLevel", + "kind": "property", + "name": "SpkrLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "unknown", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.SpkrMute", + "kind": "property", + "name": "SpkrMute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "unknown", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.TestMode", + "kind": "property", + "name": "TestMode", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "AccountLoginStateChangeEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.AccountHandle", + "kind": "field", + "name": "AccountHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.StatusCode", + "kind": "field", + "name": "StatusCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.StatusString", + "kind": "field", + "name": "StatusString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState)", + "kind": "constructor", + "name": "AccountLoginStateChangeEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "AccountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "StatusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "StatusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "State", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "AudioPropertiesEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.IsMicActive", + "kind": "field", + "name": "IsMicActive", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.MicEnergy", + "kind": "field", + "name": "MicEnergy", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.MicVolume", + "kind": "field", + "name": "MicVolume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.SpeakerVolume", + "kind": "field", + "name": "SpeakerVolume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.#ctor(System.Boolean,System.Single,System.Int32,System.Int32)", + "kind": "constructor", + "name": "AudioPropertiesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "MicIsActive", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "MicEnergy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "MicVolume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SpeakerVolume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "CaptureDevice", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice.Device", + "kind": "field", + "name": "Device", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice.#ctor", + "kind": "constructor", + "name": "CaptureDevice", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ConnectionState", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.AccountLogin", + "kind": "enum_value", + "name": "AccountLogin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.ConnectorConnected", + "kind": "enum_value", + "name": "ConnectorConnected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.DaemonConnected", + "kind": "enum_value", + "name": "DaemonConnected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.DaemonStarted", + "kind": "enum_value", + "name": "DaemonStarted", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.Provisioned", + "kind": "enum_value", + "name": "Provisioned", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.RegionCapAvailable", + "kind": "enum_value", + "name": "RegionCapAvailable", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState.SessionRunning", + "kind": "enum_value", + "name": "SessionRunning", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DaemonConnectedCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DaemonConnectedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DaemonCouldntConnectCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DaemonCouldntConnectCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DaemonCouldntRunCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DaemonCouldntRunCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DaemonDisconnectedCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DaemonDisconnectedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DaemonExitedCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DaemonExitedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DaemonRunningCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.Invoke", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DaemonRunningCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.Invoke", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "LoginState", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState.Error", + "kind": "enum_value", + "name": "Error", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState.LoggedIn", + "kind": "enum_value", + "name": "LoggedIn", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState.LoggedOut", + "kind": "enum_value", + "name": "LoggedOut", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "NewSessionEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.AccountHandle", + "kind": "field", + "name": "AccountHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.AudioMedia", + "kind": "field", + "name": "AudioMedia", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "kind": "constructor", + "name": "NewSessionEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "AccountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "URI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsChannel", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Name", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AudioMedia", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantAddedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.AccountName", + "kind": "field", + "name": "AccountName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.Appllication", + "kind": "field", + "name": "Appllication", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.DisplayName", + "kind": "field", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "kind": "constructor", + "name": "ParticipantAddedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionGroupHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AccountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "DisplayName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Application", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantPropertiesEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.Energy", + "kind": "field", + "name": "Energy", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.IsLocallyMuted", + "kind": "field", + "name": "IsLocallyMuted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.IsModeratorMuted", + "kind": "field", + "name": "IsModeratorMuted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.IsSpeaking", + "kind": "field", + "name": "IsSpeaking", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.Volume", + "kind": "field", + "name": "Volume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "kind": "constructor", + "name": "ParticipantPropertiesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantURI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsLocallyMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsModeratorMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsSpeaking", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantRemovedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.AccountName", + "kind": "field", + "name": "AccountName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String)", + "kind": "constructor", + "name": "ParticipantRemovedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionGroupHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AccountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Reason", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantState", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Answering", + "kind": "enum_value", + "name": "Answering", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Connected", + "kind": "enum_value", + "name": "Connected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Disconnected", + "kind": "enum_value", + "name": "Disconnected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Disconnecting", + "kind": "enum_value", + "name": "Disconnecting", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Idle", + "kind": "enum_value", + "name": "Idle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.InProgress", + "kind": "enum_value", + "name": "InProgress", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Incoming", + "kind": "enum_value", + "name": "Incoming", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Pending", + "kind": "enum_value", + "name": "Pending", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState.Ringing", + "kind": "enum_value", + "name": "Ringing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantStateChangeEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.AccountName", + "kind": "field", + "name": "AccountName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.DisplayName", + "kind": "field", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.StatusCode", + "kind": "field", + "name": "StatusCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.StatusString", + "kind": "field", + "name": "StatusString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "kind": "constructor", + "name": "ParticipantStateChangeEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "StatusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "StatusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "State", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantURI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "AccountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "DisplayName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ParticipantType", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantType", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType.Focus", + "kind": "enum_value", + "name": "Focus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType.Moderator", + "kind": "enum_value", + "name": "Moderator", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType.User", + "kind": "enum_value", + "name": "User", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantUpdatedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.Energy", + "kind": "field", + "name": "Energy", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.IsMuted", + "kind": "field", + "name": "IsMuted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.IsSpeaking", + "kind": "field", + "name": "IsSpeaking", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.Volume", + "kind": "field", + "name": "Volume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "kind": "constructor", + "name": "ParticipantUpdatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "URI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isSpeaking", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "RenderDevice", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice.Device", + "kind": "field", + "name": "Device", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice.#ctor", + "kind": "constructor", + "name": "RenderDevice", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ResponseType", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.AccountLogin", + "kind": "enum_value", + "name": "AccountLogin", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "15" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.AccountLogout", + "kind": "enum_value", + "name": "AccountLogout", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "16" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.CaptureAudioStart", + "kind": "enum_value", + "name": "CaptureAudioStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "11" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.CaptureAudioStop", + "kind": "enum_value", + "name": "CaptureAudioStop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "12" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.ConnectorCreate", + "kind": "enum_value", + "name": "ConnectorCreate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.ConnectorInitiateShutdown", + "kind": "enum_value", + "name": "ConnectorInitiateShutdown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.GetCaptureDevices", + "kind": "enum_value", + "name": "GetCaptureDevices", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.GetRenderDevices", + "kind": "enum_value", + "name": "GetRenderDevices", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.MuteLocalMic", + "kind": "enum_value", + "name": "MuteLocalMic", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.MuteLocalSpeaker", + "kind": "enum_value", + "name": "MuteLocalSpeaker", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.None", + "kind": "enum_value", + "name": "None", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.RenderAudioStart", + "kind": "enum_value", + "name": "RenderAudioStart", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "17" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.RenderAudioStop", + "kind": "enum_value", + "name": "RenderAudioStop", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "18" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SessionConnect", + "kind": "enum_value", + "name": "SessionConnect", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "20" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SessionCreate", + "kind": "enum_value", + "name": "SessionCreate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "19" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SessionTerminate", + "kind": "enum_value", + "name": "SessionTerminate", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "21" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.Set3DPosition", + "kind": "enum_value", + "name": "Set3DPosition", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "24" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetCaptureDevice", + "kind": "enum_value", + "name": "SetCaptureDevice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "10" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetLocalMicVolume", + "kind": "enum_value", + "name": "SetLocalMicVolume", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetLocalSpeakerVolume", + "kind": "enum_value", + "name": "SetLocalSpeakerVolume", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetMicLevel", + "kind": "enum_value", + "name": "SetMicLevel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "13" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetParticipantMuteForMe", + "kind": "enum_value", + "name": "SetParticipantMuteForMe", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "23" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetParticipantVolumeForMe", + "kind": "enum_value", + "name": "SetParticipantVolumeForMe", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "22" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetRenderDevice", + "kind": "enum_value", + "name": "SetRenderDevice", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType.SetSpeakerLevel", + "kind": "enum_value", + "name": "SetSpeakerLevel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "value": "14" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionAddedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.IsChannel", + "kind": "field", + "name": "IsChannel", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.IsIncoming", + "kind": "field", + "name": "IsIncoming", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "SessionAddedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionGroupHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isChannel", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isIncoming", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionGroupAddedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.AccountHandle", + "kind": "field", + "name": "AccountHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.#ctor(System.String,System.String,System.String)", + "kind": "constructor", + "name": "SessionGroupAddedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "acctHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionGroupHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "type", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionMediaEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.HasAudio", + "kind": "field", + "name": "HasAudio", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.HasText", + "kind": "field", + "name": "HasText", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.HasVideo", + "kind": "field", + "name": "HasVideo", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.Terminated", + "kind": "field", + "name": "Terminated", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.#ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "SessionMediaEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "HasText", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "HasAudio", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "HasVideo", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Terminated", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionRemovedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.#ctor(System.String,System.String,System.String)", + "kind": "constructor", + "name": "SessionRemovedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionGroupHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Uri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionState", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Answering", + "kind": "enum_value", + "name": "Answering", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Connected", + "kind": "enum_value", + "name": "Connected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Disconnected", + "kind": "enum_value", + "name": "Disconnected", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Hold", + "kind": "enum_value", + "name": "Hold", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Idle", + "kind": "enum_value", + "name": "Idle", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.InProgress", + "kind": "enum_value", + "name": "InProgress", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Refer", + "kind": "enum_value", + "name": "Refer", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState.Ringing", + "kind": "enum_value", + "name": "Ringing", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionStateChangeEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.ChannelName", + "kind": "field", + "name": "ChannelName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.IsChannel", + "kind": "field", + "name": "IsChannel", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.StatusCode", + "kind": "field", + "name": "StatusCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.StatusString", + "kind": "field", + "name": "StatusString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "kind": "constructor", + "name": "SessionStateChangeEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "StatusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "StatusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "State", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "URI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsChannel", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ChannelName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionUpdatedEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.IsFocused", + "kind": "field", + "name": "IsFocused", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.IsMuted", + "kind": "field", + "name": "IsMuted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.TransmitEnabled", + "kind": "field", + "name": "TransmitEnabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.Volume", + "kind": "field", + "name": "Volume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "kind": "constructor", + "name": "SessionUpdatedEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "SessionGroupHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "SessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "URI", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "Volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "TransmitEnabled", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "IsFocused", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceAccountEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "kind": "constructor", + "name": "VoiceAccountEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "rcode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ahandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.AccountHandle", + "kind": "property", + "name": "AccountHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceConnectionChangeCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.Invoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "state", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "VoiceConnectionChangeCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.BeginInvoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "state", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.Invoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "state", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceConnectorEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String,System.String)", + "kind": "constructor", + "name": "VoiceConnectorEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "rcode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "version", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.Handle", + "kind": "property", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.Version", + "kind": "property", + "name": "Version", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceDevicesEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "kind": "constructor", + "name": "VoiceDevicesEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rcode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "current", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "avail", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.CurrentDevice", + "kind": "property", + "name": "CurrentDevice", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.Devices", + "kind": "property", + "name": "Devices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceEvent", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Event" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.AccountHandle", + "kind": "field", + "name": "AccountHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.AccountName", + "kind": "field", + "name": "AccountName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Application", + "kind": "field", + "name": "Application", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.AudioMedia", + "kind": "field", + "name": "AudioMedia", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.ChannelName", + "kind": "field", + "name": "ChannelName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.DisplayName", + "kind": "field", + "name": "DisplayName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Energy", + "kind": "field", + "name": "Energy", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.HasAudio", + "kind": "field", + "name": "HasAudio", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.HasText", + "kind": "field", + "name": "HasText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.HasVideo", + "kind": "field", + "name": "HasVideo", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Incoming", + "kind": "field", + "name": "Incoming", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsChannel", + "kind": "field", + "name": "IsChannel", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsFocused", + "kind": "field", + "name": "IsFocused", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsIncoming", + "kind": "field", + "name": "IsIncoming", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsLocallyMuted", + "kind": "field", + "name": "IsLocallyMuted", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsModeratorMuted", + "kind": "field", + "name": "IsModeratorMuted", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsMuted", + "kind": "field", + "name": "IsMuted", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsSpeaking", + "kind": "field", + "name": "IsSpeaking", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.MicEnergy", + "kind": "field", + "name": "MicEnergy", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.MicIsActive", + "kind": "field", + "name": "MicIsActive", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.MicVolume", + "kind": "field", + "name": "MicVolume", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.ParticipantType", + "kind": "field", + "name": "ParticipantType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.ParticipantUri", + "kind": "field", + "name": "ParticipantUri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Reason", + "kind": "field", + "name": "Reason", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.SessionGroupHandle", + "kind": "field", + "name": "SessionGroupHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.SpeakerVolume", + "kind": "field", + "name": "SpeakerVolume", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.State", + "kind": "field", + "name": "State", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.StatusCode", + "kind": "field", + "name": "StatusCode", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.StatusString", + "kind": "field", + "name": "StatusString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Terminated", + "kind": "field", + "name": "Terminated", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.TransmitEnabled", + "kind": "field", + "name": "TransmitEnabled", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "type" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.URI", + "kind": "field", + "name": "URI", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Uri", + "kind": "field", + "name": "Uri", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Volume", + "kind": "field", + "name": "Volume", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.#ctor", + "kind": "constructor", + "name": "VoiceEvent", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceInputXml", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceInputXml", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceInputXml", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceInputXml.Request", + "kind": "field", + "name": "Request", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceInputXml.#ctor", + "kind": "constructor", + "name": "VoiceInputXml", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceLoggingSettings", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.Enabled", + "kind": "field", + "name": "Enabled", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.FileNamePrefix", + "kind": "field", + "name": "FileNamePrefix", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.FileNameSuffix", + "kind": "field", + "name": "FileNameSuffix", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.Folder", + "kind": "field", + "name": "Folder", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.LogLevel", + "kind": "field", + "name": "LogLevel", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.#ctor", + "kind": "constructor", + "name": "VoiceLoggingSettings", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceMicTestCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.Invoke(System.Single)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "VoiceMicTestCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.BeginInvoke(System.Single,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.Invoke(System.Single)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "level", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceRequest", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Request" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountManagementServer", + "kind": "field", + "name": "AccountManagementServer", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountName", + "kind": "field", + "name": "AccountName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountPassword", + "kind": "field", + "name": "AccountPassword", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountURI", + "kind": "field", + "name": "AccountURI", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Action", + "kind": "field", + "name": "Action", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "action" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AudioSessionAnswerMode", + "kind": "field", + "name": "AudioSessionAnswerMode", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.CaptureDeviceSpecifier", + "kind": "field", + "name": "CaptureDeviceSpecifier", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ClientName", + "kind": "field", + "name": "ClientName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ConnectorHandle", + "kind": "field", + "name": "ConnectorHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Duration", + "kind": "field", + "name": "Duration", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.EnableBuddiesAndPresence", + "kind": "field", + "name": "EnableBuddiesAndPresence", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.JoinAudio", + "kind": "field", + "name": "JoinAudio", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.JoinText", + "kind": "field", + "name": "JoinText", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Level", + "kind": "field", + "name": "Level", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ListenerPosition", + "kind": "field", + "name": "ListenerPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoicePosition", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Logging", + "kind": "field", + "name": "Logging", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Loop", + "kind": "field", + "name": "Loop", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.MaximumPort", + "kind": "field", + "name": "MaximumPort", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.MinimumPort", + "kind": "field", + "name": "MinimumPort", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Name", + "kind": "field", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.OrientationType", + "kind": "field", + "name": "OrientationType", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ParticipantPropertyFrequency", + "kind": "field", + "name": "ParticipantPropertyFrequency", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ParticipantURI", + "kind": "field", + "name": "ParticipantURI", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Password", + "kind": "field", + "name": "Password", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.PasswordHashAlgorithm", + "kind": "field", + "name": "PasswordHashAlgorithm", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.RenderDeviceSpecifier", + "kind": "field", + "name": "RenderDeviceSpecifier", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.RequestId", + "kind": "field", + "name": "RequestId", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "requestId" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.SoundFilePath", + "kind": "field", + "name": "SoundFilePath", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.SpeakerPosition", + "kind": "field", + "name": "SpeakerPosition", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoicePosition", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.URI", + "kind": "field", + "name": "URI", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Value", + "kind": "field", + "name": "Value", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Volume", + "kind": "field", + "name": "Volume", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.#ctor", + "kind": "constructor", + "name": "VoiceRequest", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceResponse", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Xml.Serialization.XmlRootAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "Response" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.Action", + "kind": "field", + "name": "Action", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "action" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.InputXml", + "kind": "field", + "name": "InputXml", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceInputXml", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.RequestId", + "kind": "field", + "name": "RequestId", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Xml.Serialization.XmlAttributeAttribute", + "constructor_arguments": [ + { + "type": "System.String", + "value": "requestId" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.Results", + "kind": "field", + "name": "Results", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.ReturnCode", + "kind": "field", + "name": "ReturnCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.#ctor", + "kind": "constructor", + "name": "VoiceResponse", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceResponseEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.EventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.Message", + "kind": "field", + "name": "Message", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.ReturnCode", + "kind": "field", + "name": "ReturnCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.StatusCode", + "kind": "field", + "name": "StatusCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.Type", + "kind": "field", + "name": "Type", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String)", + "kind": "constructor", + "name": "VoiceResponseEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "type", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "rcode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceResponseResults", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.AccountHandle", + "kind": "field", + "name": "AccountHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.CaptureDevices", + "kind": "field", + "name": "CaptureDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.ConnectorHandle", + "kind": "field", + "name": "ConnectorHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.CurrentCaptureDevice", + "kind": "field", + "name": "CurrentCaptureDevice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.CurrentRenderDevice", + "kind": "field", + "name": "CurrentRenderDevice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.RenderDevices", + "kind": "field", + "name": "RenderDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.StatusCode", + "kind": "field", + "name": "StatusCode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.StatusString", + "kind": "field", + "name": "StatusString", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.VersionID", + "kind": "field", + "name": "VersionID", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.#ctor", + "kind": "constructor", + "name": "VoiceResponseResults", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceSessionEventArgs", + "signature": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.SessionHandle", + "kind": "field", + "name": "SessionHandle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "kind": "constructor", + "name": "VoiceSessionEventArgs", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "rcode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "scode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "text", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "shandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceManager", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnAccountChannelGetList", + "kind": "event", + "name": "OnAccountChannelGetList", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnAccountLogout", + "kind": "event", + "name": "OnAccountLogout", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnAuxAudioProperties", + "kind": "event", + "name": "OnAuxAudioProperties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnCaptureDevices", + "kind": "event", + "name": "OnCaptureDevices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnConnectorCreated", + "kind": "event", + "name": "OnConnectorCreated", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnConnectorInitiateShutdown", + "kind": "event", + "name": "OnConnectorInitiateShutdown", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnLogin", + "kind": "event", + "name": "OnLogin", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnLoginStateChange", + "kind": "event", + "name": "OnLoginStateChange", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnNewSession", + "kind": "event", + "name": "OnNewSession", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnParcelVoiceInfo", + "kind": "event", + "name": "OnParcelVoiceInfo", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnParticipantProperties", + "kind": "event", + "name": "OnParticipantProperties", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnParticipantStateChange", + "kind": "event", + "name": "OnParticipantStateChange", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnProvisionAccount", + "kind": "event", + "name": "OnProvisionAccount", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnRenderDevices", + "kind": "event", + "name": "OnRenderDevices", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnSessionConnected", + "kind": "event", + "name": "OnSessionConnected", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnSessionCreated", + "kind": "event", + "name": "OnSessionCreated", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnSessionStateChange", + "kind": "event", + "name": "OnSessionStateChange", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceManager.OnSessionTerminated", + "kind": "event", + "name": "OnSessionTerminated", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.BlockingTimeout", + "kind": "field", + "name": "BlockingTimeout", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.DAEMON_ARGS", + "kind": "constant", + "name": "DAEMON_ARGS", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": " -p tcp -h -c -ll " + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.DAEMON_LOG_LEVEL", + "kind": "constant", + "name": "DAEMON_LOG_LEVEL", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "1" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.DAEMON_PORT", + "kind": "constant", + "name": "DAEMON_PORT", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "44124" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.REQUEST_TERMINATOR", + "kind": "constant", + "name": "REQUEST_TERMINATOR", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "\n\n\n" + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VOICE_DEBUG_SERVER", + "kind": "constant", + "name": "VOICE_DEBUG_SERVER", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "bhd.vivox.com" + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VOICE_MAJOR_VERSION", + "kind": "constant", + "name": "VOICE_MAJOR_VERSION", + "static": true, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.Int32", + "value": "1" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VOICE_RELEASE_SERVER", + "kind": "constant", + "name": "VOICE_RELEASE_SERVER", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "bhr.vivox.com" + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VoiceServer", + "kind": "field", + "name": "VoiceServer", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.#ctor(LibreMetaverse.GridClient)", + "kind": "constructor", + "name": "VoiceManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CaptureDevices", + "kind": "method", + "name": "CaptureDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectToDaemon", + "kind": "method", + "name": "ConnectToDaemon", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectToDaemon(System.String,System.Int32)", + "kind": "method", + "name": "ConnectToDaemon", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "address", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "port", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CreateConnector(System.Int32@)", + "kind": "method", + "name": "CreateConnector", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "status", + "type": "System.Int32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CurrentCaptureDevices", + "kind": "method", + "name": "CurrentCaptureDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CurrentRenderDevices", + "kind": "method", + "name": "CurrentRenderDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.GetChannelMap", + "kind": "method", + "name": "GetChannelMap", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.IsDaemonRunning", + "kind": "method", + "name": "IsDaemonRunning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Login(System.String,System.String,System.String,System.Int32@)", + "kind": "method", + "name": "Login", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "accountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "status", + "type": "System.Int32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RenderDevices", + "kind": "method", + "name": "RenderDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CSystem.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCaptureDevices", + "kind": "method", + "name": "RequestCaptureDevices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCreateConnector", + "kind": "method", + "name": "RequestCreateConnector", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCreateConnector(System.String)", + "kind": "method", + "name": "RequestCreateConnector", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "voiceServer", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestLogin(System.String,System.String,System.String)", + "kind": "method", + "name": "RequestLogin", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "accountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "connHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestParcelVoiceInfo", + "kind": "method", + "name": "RequestParcelVoiceInfo", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestProvisionAccount", + "kind": "method", + "name": "RequestProvisionAccount", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderAudioStart(System.String,System.Boolean)", + "kind": "method", + "name": "RequestRenderAudioStart", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "fileName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "loop", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderAudioStop", + "kind": "method", + "name": "RequestRenderAudioStop", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderDevices", + "kind": "method", + "name": "RequestRenderDevices", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetCaptureVolume(System.Int32)", + "kind": "method", + "name": "RequestSetCaptureVolume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetRenderDevice(System.String)", + "kind": "method", + "name": "RequestSetRenderDevice", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "deviceName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetSpeakerVolume(System.Int32)", + "kind": "method", + "name": "RequestSetSpeakerVolume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestStartTuningMode(System.Int32)", + "kind": "method", + "name": "RequestStartTuningMode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "duration", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestStopTuningMode", + "kind": "method", + "name": "RequestStopTuningMode", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SipuriFromVoiceAccount(System.String)", + "kind": "method", + "name": "SipuriFromVoiceAccount", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "account", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.StartDaemon", + "kind": "method", + "name": "StartDaemon", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.StopDaemon", + "kind": "method", + "name": "StopDaemon", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.UuidFromVoiceAccount(System.String)", + "kind": "method", + "name": "UuidFromVoiceAccount", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "accountName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.VoiceAccountFromUuid(LibreMetaverse.UUID)", + "kind": "method", + "name": "VoiceAccountFromUuid", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "id", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "AuxAudioPropertiesCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.Invoke(System.Int32,System.Single)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "AuxAudioPropertiesCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.BeginInvoke(System.Int32,System.Single,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.Invoke(System.Int32,System.Single)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "BasicActionCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.Invoke(System.Int32,System.Int32,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "BasicActionCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.Invoke(System.Int32,System.Int32,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ConnectorCreatedCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ConnectorCreatedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "connectorHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "DevicesCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "currentDevice", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "DevicesCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "currentDevice", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "currentDevice", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "LoginCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "LoginCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "LoginStateChangeCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "LoginStateChangeCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "NewSessionCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventSessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "NewSessionCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventSessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "accountHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventSessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParcelVoiceInfoCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.Invoke(System.String,System.Int32,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channelUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ParcelVoiceInfoCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "localId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channelUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.Invoke(System.String,System.Int32,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "regionName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "localId", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channelUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantPropertiesCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isLocallyMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isModeratorMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isSpeaking", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ParticipantPropertiesCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "isLocallyMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isModeratorMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isSpeaking", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isLocallyMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isModeratorMuted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isSpeaking", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "volume", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "energy", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ParticipantStateChangeCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "displayNameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "participantType", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ParticipantStateChangeCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "displayNameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "participantType", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "displayNameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "participantType", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "ProvisionAccountCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.Invoke(System.String,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "username", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "ProvisionAccountCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.BeginInvoke(System.String,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "username", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.Invoke(System.String,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "username", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "password", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionCreatedCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "SessionCreatedCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "sessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "SessionStateChangeCallback", + "signature": "LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback", + "kind": "delegate", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.MulticastDelegate", + "interfaces": [ + "System.ICloneable", + "System.Runtime.Serialization.ISerializable" + ], + "delegate_signature": { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "kind": "delegate_signature", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventSessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isChannel", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "kind": "constructor", + "name": "SessionStateChangeCallback", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "method", + "type": "System.IntPtr", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "kind": "method", + "name": "BeginInvoke", + "static": false, + "visibility": "public", + "type": "System.IAsyncResult", + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventSessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isChannel", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "callback", + "type": "System.AsyncCallback", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "name": "object", + "type": "System.Object", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.EndInvoke(System.IAsyncResult)", + "kind": "method", + "name": "EndInvoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "result", + "type": "System.IAsyncResult", + "passing": "value", + "optional": false, + "nullability": { + "read": "unknown", + "write": "unknown", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "kind": "method", + "name": "Invoke", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "cookie", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "uriString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusCode", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "statusString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "eventSessionHandle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "state", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isChannel", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "nameString", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceParticipant", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceParticipant", + "signature": "LibreMetaverse.Voice.Vivox.VoiceParticipant", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceParticipant.#ctor(System.String,LibreMetaverse.Voice.Vivox.VoiceSession)", + "kind": "constructor", + "name": "VoiceParticipant", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "puri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "s", + "type": "LibreMetaverse.Voice.Vivox.VoiceSession", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceParticipant.IDFromName(System.String)", + "kind": "method", + "name": "IDFromName", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "inName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.Energy", + "kind": "property", + "name": "Energy", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.ID", + "kind": "property", + "name": "ID", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.IsMuted", + "kind": "property", + "name": "IsMuted", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.IsSpeaking", + "kind": "property", + "name": "IsSpeaking", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.Name", + "kind": "property", + "name": "Name", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.Volume", + "kind": "property", + "name": "Volume", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoicePosition", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoicePosition", + "signature": "LibreMetaverse.Voice.Vivox.VoicePosition", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoicePosition.AtOrientation", + "kind": "field", + "name": "AtOrientation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoicePosition.LeftOrientation", + "kind": "field", + "name": "LeftOrientation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoicePosition.Position", + "kind": "field", + "name": "Position", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoicePosition.UpOrientation", + "kind": "field", + "name": "UpOrientation", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoicePosition.Velocity", + "kind": "field", + "name": "Velocity", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Vector3d", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoicePosition.#ctor", + "kind": "constructor", + "name": "VoicePosition", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceServiceType", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceServiceType", + "signature": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceServiceType.TypeA", + "kind": "enum_value", + "name": "TypeA", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceServiceType.TypeB", + "kind": "enum_value", + "name": "TypeB", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceServiceType.TypeC", + "kind": "enum_value", + "name": "TypeC", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceServiceType.Unknown", + "kind": "enum_value", + "name": "Unknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceServiceType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceSession", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceSession", + "signature": "LibreMetaverse.Voice.Vivox.VoiceSession", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceSession.OnParticipantAdded", + "kind": "event", + "name": "OnParticipantAdded", + "static": false, + "visibility": "public", + "type": "System.EventHandler", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceSession.OnParticipantRemoved", + "kind": "event", + "name": "OnParticipantRemoved", + "static": false, + "visibility": "public", + "type": "System.EventHandler", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceSession.OnParticipantUpdate", + "kind": "event", + "name": "OnParticipantUpdate", + "static": false, + "visibility": "public", + "type": "System.EventHandler", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceSession.RegionName", + "kind": "field", + "name": "RegionName", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceSession.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway,System.String)", + "kind": "constructor", + "name": "VoiceSession", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "conn", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "handle", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceSession.Set3DPosition(LibreMetaverse.Voice.Vivox.VoicePosition,LibreMetaverse.Voice.Vivox.VoicePosition)", + "kind": "method", + "name": "Set3DPosition", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "speakerPosition", + "type": "LibreMetaverse.Voice.Vivox.VoicePosition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "listenerPosition", + "type": "LibreMetaverse.Voice.Vivox.VoicePosition", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceSession.Connector", + "kind": "property", + "name": "Connector", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceGateway", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceSession.Handle", + "kind": "property", + "name": "Handle", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceSession.IsSpatial", + "kind": "property", + "name": "IsSpatial", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceStatus", + "namespace": "LibreMetaverse.Voice.Vivox", + "name": "VoiceStatus", + "signature": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "kind": "enum", + "visibility": "public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.BeginErrorStatus", + "kind": "enum_value", + "name": "BeginErrorStatus", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "5" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.ErrorChannelFull", + "kind": "enum_value", + "name": "ErrorChannelFull", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "6" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.ErrorChannelLocked", + "kind": "enum_value", + "name": "ErrorChannelLocked", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "7" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.ErrorNotAvailable", + "kind": "enum_value", + "name": "ErrorNotAvailable", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "8" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.ErrorUnknown", + "kind": "enum_value", + "name": "ErrorUnknown", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "9" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.StatusJoined", + "kind": "enum_value", + "name": "StatusJoined", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "3" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.StatusJoining", + "kind": "enum_value", + "name": "StatusJoining", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "2" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.StatusLeftChannel", + "kind": "enum_value", + "name": "StatusLeftChannel", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "4" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.StatusLoggedIn", + "kind": "enum_value", + "name": "StatusLoggedIn", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceStatus.StatusLoginRetry", + "kind": "enum_value", + "name": "StatusLoginRetry", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.Vivox.VoiceStatus", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + } + ] + } + ] + }, + { + "identity": { + "name": "LibreMetaverse.Voice.WebRTC", + "version": "3.0.0.0", + "culture": "neutral", + "public_key_token": "", + "mvid": "f70a948a-dcb4-4169-a64f-37069fbca999", + "file": "LibreMetaverse.Voice.WebRTC.dll", + "sha256": "725dadab6de11787dd901e484b849b395445e096126d1190ab6a06a234153239" + }, + "counts": { + "catalog_types": 12, + "catalog_members": 210, + "metadata_types": 12, + "metadata_members": 210 + }, + "types": [ + { + "doc_id": "T:LibreMetaverse.AudioDevice", + "namespace": "LibreMetaverse", + "name": "AudioDevice", + "signature": "LibreMetaverse.AudioDevice", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.AudioDevice.OnAudioSourceEncodedSample", + "kind": "event", + "name": "OnAudioSourceEncodedSample", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.UInt32, System.Byte[]\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.AudioDevice.OnPlaybackActiveChanged", + "kind": "event", + "name": "OnPlaybackActiveChanged", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.AudioDevice.OnRecordingActiveChanged", + "kind": "event", + "name": "OnRecordingActiveChanged", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.#ctor(LibreMetaverse.Voice.WebRTC.IVoiceLogger)", + "kind": "constructor", + "name": "AudioDevice", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "logger", + "type": "LibreMetaverse.Voice.WebRTC.IVoiceLogger", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Voice.WebRTC.IVoiceLogger" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceEncodedSample(System.UInt32,System.Byte[])", + "kind": "method", + "name": "AudioSource_OnAudioSourceEncodedSample", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "durationRtpUnits", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sample", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceRawSample(SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum,System.UInt32,System.Int16[])", + "kind": "method", + "name": "AudioSource_OnAudioSourceRawSample", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "samplingRate", + "type": "SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "durationMilliseconds", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sample", + "type": "System.Int16[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.ClearSsrc(System.UInt32)", + "kind": "method", + "name": "ClearSsrc", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ssrc", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.CloseRecordingSource", + "kind": "method", + "name": "CloseRecordingSource", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.DisableAudioProcessing", + "kind": "method", + "name": "DisableAudioProcessing", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "kind": "method", + "name": "EnableAudioProcessing", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "noiseSuppression", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "highPassFilter", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "agc", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "echoCancellation", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "nsLevel", + "type": "SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel", + "passing": "value", + "optional": true, + "default": { + "type": "SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel", + "value": "High" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "agc1", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "aecLatencyMs", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "40" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.EnsureEndpoint", + "kind": "method", + "name": "EnsureEndpoint", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.FeedEncodedSample(System.UInt32,System.Byte[])", + "kind": "method", + "name": "FeedEncodedSample", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "durationRtpUnits", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "encoded", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmBytes(System.Byte[],System.Int32,System.Int32)", + "kind": "method", + "name": "FeedPcmBytes", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pcmBytes", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "48000" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamples(System.Int16[],System.Int32,System.Int32)", + "kind": "method", + "name": "FeedPcmSamples", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pcmInterleaved", + "type": "System.Int16[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "48000" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamplesPacedAsync(System.Int16[],System.Int32,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "FeedPcmSamplesPacedAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pcmInterleaved", + "type": "System.Int16[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "48000" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AudioDevice.\u003CFeedPcmSamplesPacedAsync\u003Ed__80" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.GetPlaybackDevices", + "kind": "method", + "name": "GetPlaybackDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.UInt32, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.GetRecordingDevices", + "kind": "method", + "name": "GetRecordingDevices", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.UInt32, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.PlayFileLoop(System.String)", + "kind": "method", + "name": "PlayFileLoop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.PlayFileOnce(System.String)", + "kind": "method", + "name": "PlayFileOnce", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.PlayRawPcmStreamAsync(System.IO.Stream,System.Int32,System.Int32,System.Threading.CancellationToken)", + "kind": "method", + "name": "PlayRawPcmStreamAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pcmStream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "48000" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AudioDevice.\u003CPlayRawPcmStreamAsync\u003Ed__83" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.PlayRtpPacket(System.UInt32,System.Byte[])", + "kind": "method", + "name": "PlayRtpPacket", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ssrc", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "payload", + "type": "System.Byte[]", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "element": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.SetCaptureGainPercent(System.Int32)", + "kind": "method", + "name": "SetCaptureGainPercent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "percent", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.SetPlaybackDevice(System.String)", + "kind": "method", + "name": "SetPlaybackDevice", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "deviceName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.SetPlaybackVolume(System.Single)", + "kind": "method", + "name": "SetPlaybackVolume", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "normalized", + "type": "System.Single", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.SetRecordingDevice(System.String)", + "kind": "method", + "name": "SetRecordingDevice", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "deviceName", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcGainPercent(System.UInt32,System.Int32)", + "kind": "method", + "name": "SetSsrcGainPercent", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ssrc", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "percent", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcMute(System.UInt32,System.Boolean)", + "kind": "method", + "name": "SetSsrcMute", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ssrc", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "muted", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StartFilePlayback(System.String,System.Boolean)", + "kind": "method", + "name": "StartFilePlayback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "loop", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StartPlaybackAsync", + "kind": "method", + "name": "StartPlaybackAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AudioDevice.\u003CStartPlaybackAsync\u003Ed__51" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmFileLoop(System.String,System.Int32,System.Boolean)", + "kind": "method", + "name": "StartRawPcmFileLoop", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "loop", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmStream(System.IO.Stream,System.Int32,System.Int32)", + "kind": "method", + "name": "StartRawPcmStream", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "pcmStream", + "type": "System.IO.Stream", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "48000" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StartRecording", + "kind": "method", + "name": "StartRecording", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StopFile", + "kind": "method", + "name": "StopFile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StopFilePlayback", + "kind": "method", + "name": "StopFilePlayback", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StopPlaybackAsync", + "kind": "method", + "name": "StopPlaybackAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.AudioDevice.\u003CStopPlaybackAsync\u003Ed__52" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StopRawPcmStream", + "kind": "method", + "name": "StopRawPcmStream", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.AudioDevice.StopRecording", + "kind": "method", + "name": "StopRecording", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.EndPoint", + "kind": "property", + "name": "EndPoint", + "static": false, + "visibility": "public", + "type": "SIPSorceryMedia.SoundFlow.SoundFlowAudioEndPoint", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.IsAvailable", + "kind": "property", + "name": "IsAvailable", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.MicMute", + "kind": "property", + "name": "MicMute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.PlaybackActive", + "kind": "property", + "name": "PlaybackActive", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.PlaybackDevice", + "kind": "property", + "name": "PlaybackDevice", + "static": false, + "visibility": "public", + "type": "System.ValueTuple\u003CSystem.UInt32, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "id" + }, + { + "type": "System.String", + "value": "name" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "id" + }, + { + "type": "System.String", + "value": "name" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.RecordingActive", + "kind": "property", + "name": "RecordingActive", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.RecordingDevice", + "kind": "property", + "name": "RecordingDevice", + "static": false, + "visibility": "public", + "type": "System.ValueTuple\u003CSystem.UInt32, System.String\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "id" + }, + { + "type": "System.String", + "value": "name" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "0" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "id" + }, + { + "type": "System.String", + "value": "name" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.Source", + "kind": "property", + "name": "Source", + "static": false, + "visibility": "public", + "type": "SIPSorceryMedia.SoundFlow.SoundFlowAudioSource", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.AudioDevice.SpeakerLevel", + "kind": "property", + "name": "SpeakerLevel", + "static": false, + "visibility": "public", + "type": "System.Single", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.IVoiceLogger", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "IVoiceLogger", + "signature": "LibreMetaverse.Voice.WebRTC.IVoiceLogger", + "kind": "interface", + "visibility": "public", + "abstract": true, + "sealed": false, + "static": false, + "generic_parameters": [], + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Debug(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Debug", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Error(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Info(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Info", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Log", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Warn(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Warn", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "LibreMetaverseVoiceLogger", + "signature": "LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "LibreMetaverse.Voice.WebRTC.IVoiceLogger" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.#ctor", + "kind": "constructor", + "name": "LibreMetaverseVoiceLogger", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Debug(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Debug", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Error(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Error", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Info(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Info", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Log", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "level", + "type": "Microsoft.Extensions.Logging.LogLevel", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Warn(System.String,LibreMetaverse.GridClient)", + "kind": "method", + "name": "Warn", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.GridClient" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.PeerManager", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "PeerManager", + "signature": "LibreMetaverse.Voice.WebRTC.PeerManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.GainMapReceived", + "kind": "event", + "name": "GainMapReceived", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.MuteMapReceived", + "kind": "event", + "name": "MuteMapReceived", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerAudioUpdated", + "kind": "event", + "name": "PeerAudioUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerJoined", + "kind": "event", + "name": "PeerJoined", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerLeft", + "kind": "event", + "name": "PeerLeft", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerListUpdated", + "kind": "event", + "name": "PeerListUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerPositionUpdated", + "kind": "event", + "name": "PeerPositionUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.StructuredData.OSDMap\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PongReceived", + "kind": "event", + "name": "PongReceived", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.#ctor(LibreMetaverse.AudioDevice,LibreMetaverse.GridClient,LibreMetaverse.Voice.WebRTC.IVoiceLogger)", + "kind": "constructor", + "name": "PeerManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "audioDevice", + "type": "LibreMetaverse.AudioDevice", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "log", + "type": "LibreMetaverse.Voice.WebRTC.IVoiceLogger", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ClearAllPeers", + "kind": "method", + "name": "ClearAllPeers", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.GetKnownPeers", + "kind": "method", + "name": "GetKnownPeers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessJsonElement(System.Text.Json.JsonElement,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "kind": "method", + "name": "ProcessJsonElement", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "root", + "type": "System.Text.Json.JsonElement", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sendString", + "type": "System.Func\u003CSystem.String, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "sessionId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessOSDMap(LibreMetaverse.StructuredData.OSDMap,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "kind": "method", + "name": "ProcessOSDMap", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "map", + "type": "LibreMetaverse.StructuredData.OSDMap", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "sendString", + "type": "System.Func\u003CSystem.String, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + }, + { + "name": "sessionId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ReapStalePeers(System.TimeSpan)", + "kind": "method", + "name": "ReapStalePeers", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "maxAge", + "type": "System.TimeSpan", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.RemovePeer(LibreMetaverse.UUID)", + "kind": "method", + "name": "RemovePeer", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.TryGetPeerForSsrc(System.UInt32,LibreMetaverse.UUID@)", + "kind": "method", + "name": "TryGetPeerForSsrc", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ssrc", + "type": "System.UInt32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "peerId", + "type": "LibreMetaverse.UUID\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.TryGetSsrc(LibreMetaverse.UUID,System.UInt32@)", + "kind": "method", + "name": "TryGetSsrc", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "ssrc", + "type": "System.UInt32\u0026", + "passing": "out", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OutAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceException", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "VoiceException", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceException", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Exception", + "interfaces": [ + "System.Runtime.Serialization.ISerializable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceException.#ctor(System.String)", + "kind": "constructor", + "name": "VoiceException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "msg", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceException.#ctor(System.String,System.Boolean)", + "kind": "constructor", + "name": "VoiceException", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "msg", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "isDefinitiveRejection", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceException.IsDefinitiveRejection", + "kind": "property", + "name": "IsDefinitiveRejection", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceManager", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "VoiceManager", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceManager", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.GainMapReceived", + "kind": "event", + "name": "GainMapReceived", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.MuteMapReceived", + "kind": "event", + "name": "MuteMapReceived", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceJoinFailed", + "kind": "event", + "name": "OnGroupVoiceJoinFailed", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, System.Exception\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceJoined", + "kind": "event", + "name": "OnGroupVoiceJoined", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceLeft", + "kind": "event", + "name": "OnGroupVoiceLeft", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallAccepted", + "kind": "event", + "name": "OnP2PCallAccepted", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallDeclined", + "kind": "event", + "name": "OnP2PCallDeclined", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallEnded", + "kind": "event", + "name": "OnP2PCallEnded", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallFailed", + "kind": "event", + "name": "OnP2PCallFailed", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, System.Exception\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallIncoming", + "kind": "event", + "name": "OnP2PCallIncoming", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallStarted", + "kind": "event", + "name": "OnP2PCallStarted", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnParcelVoiceInfo", + "kind": "event", + "name": "OnParcelVoiceInfo", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.String, System.Int32, System.String\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionChangeDetected", + "kind": "event", + "name": "OnRegionChangeDetected", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionTransitionCompleted", + "kind": "event", + "name": "OnRegionTransitionCompleted", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionTransitionFailed", + "kind": "event", + "name": "OnRegionTransitionFailed", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Exception\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnReprovisionFailed", + "kind": "event", + "name": "OnReprovisionFailed", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Exception\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnReprovisionSucceeded", + "kind": "event", + "name": "OnReprovisionSucceeded", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnVoicePermissionChanged", + "kind": "event", + "name": "OnVoicePermissionChanged", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerAudioUpdated", + "kind": "event", + "name": "PeerAudioUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerConnectionClosed", + "kind": "event", + "name": "PeerConnectionClosed", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerConnectionReady", + "kind": "event", + "name": "PeerConnectionReady", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerJoined", + "kind": "event", + "name": "PeerJoined", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerLeft", + "kind": "event", + "name": "PeerLeft", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerListUpdated", + "kind": "event", + "name": "PeerListUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerPositionUpdated", + "kind": "event", + "name": "PeerPositionUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.StructuredData.OSDMap\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerPositionUpdatedTyped", + "kind": "event", + "name": "PeerPositionUpdatedTyped", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceManager.AudioDevice", + "kind": "field", + "name": "AudioDevice", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.AudioDevice", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": true, + "constant": false, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.#ctor(LibreMetaverse.GridClient,LibreMetaverse.Voice.WebRTC.IVoiceLogger)", + "kind": "constructor", + "name": "VoiceManager", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "logger", + "type": "LibreMetaverse.Voice.WebRTC.IVoiceLogger", + "passing": "value", + "optional": true, + "default": { + "type": "LibreMetaverse.Voice.WebRTC.IVoiceLogger" + }, + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptIncomingP2PCallAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "AcceptIncomingP2PCallAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CAcceptIncomingP2PCallAsync\u003Ed__155" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptP2PCallAsync(LibreMetaverse.UUID,System.String,System.String)", + "kind": "method", + "name": "AcceptP2PCallAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channelUri", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "credentials", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CAcceptP2PCallAsync\u003Ed__175" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.ConnectPrimaryRegionAsync", + "kind": "method", + "name": "ConnectPrimaryRegionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CConnectPrimaryRegionAsync\u003Ed__134" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.DeclineIncomingP2PCall(LibreMetaverse.UUID)", + "kind": "method", + "name": "DeclineIncomingP2PCall", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "callerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.DeclineP2PCall(LibreMetaverse.UUID)", + "kind": "method", + "name": "DeclineP2PCall", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.Disconnect", + "kind": "method", + "name": "Disconnect", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.EndP2PCallAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "EndP2PCallAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CEndP2PCallAsync\u003Ed__174" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetActiveGroupVoiceSessions", + "kind": "method", + "name": "GetActiveGroupVoiceSessions", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetActiveP2PCalls", + "kind": "method", + "name": "GetActiveP2PCalls", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetAllKnownPeers", + "kind": "method", + "name": "GetAllKnownPeers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetGroupVoicePeers(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetGroupVoicePeers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetKnownPeers", + "kind": "method", + "name": "GetKnownPeers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetP2PCallInfo(LibreMetaverse.UUID)", + "kind": "method", + "name": "GetP2PCallInfo", + "static": false, + "visibility": "public", + "type": "System.ValueTuple\u003CSystem.Boolean, System.Boolean, System.Nullable\u003CSystem.DateTime\u003E\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + } + ] + }, + "return_attributes": [ + { + "type": "System.Runtime.CompilerServices.TupleElementNamesAttribute", + "constructor_arguments": [ + { + "type": "System.String[]", + "value": [ + { + "type": "System.String", + "value": "IsActive" + }, + { + "type": "System.String", + "value": "IsOutgoing" + }, + { + "type": "System.String", + "value": "CallStarted" + } + ] + } + ], + "named_arguments": [] + } + ], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.IsInGroupVoice(LibreMetaverse.UUID)", + "kind": "method", + "name": "IsInGroupVoice", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.IsInP2PCall(LibreMetaverse.UUID)", + "kind": "method", + "name": "IsInP2PCall", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.IsVoiceAllowedAt(LibreMetaverse.GridClient)", + "kind": "method", + "name": "IsVoiceAllowedAt", + "static": true, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "client", + "type": "LibreMetaverse.GridClient", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.JoinConferenceVoiceAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "JoinConferenceVoiceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.JoinGroupVoiceAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "JoinGroupVoiceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CJoinGroupVoiceAsync\u003Ed__165" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.LeaveConferenceVoiceAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "LeaveConferenceVoiceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "sessionId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.LeaveGroupVoiceAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "LeaveGroupVoiceAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CLeaveGroupVoiceAsync\u003Ed__166" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayRawFile(System.String,System.Int32,System.Int32,System.Boolean)", + "kind": "method", + "name": "PlayRawFile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "channels", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "1" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "sampleRate", + "type": "System.Int32", + "passing": "value", + "optional": true, + "default": { + "type": "System.Int32", + "value": "48000" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + }, + { + "name": "loop", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayWavAsMic(System.String,System.Boolean)", + "kind": "method", + "name": "PlayWavAsMic", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "path", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "loop", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "False" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.RequestParcelVoiceInfoAsync", + "kind": "method", + "name": "RequestParcelVoiceInfoAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CRequestParcelVoiceInfoAsync\u003Ed__149" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SendDataChannelMessage(System.String)", + "kind": "method", + "name": "SendDataChannelMessage", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "message", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetGroupVoicePeerGain(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "SetGroupVoicePeerGain", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetGroupVoicePeerMute(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "SetGroupVoicePeerMute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "groupId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetP2PCallGain(LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "SetP2PCallGain", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetP2PCallMute(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "SetP2PCallMute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetPeerGain(LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "SetPeerGain", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetPeerMute(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "SetPeerMute", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StartP2PCallAsync(LibreMetaverse.UUID)", + "kind": "method", + "name": "StartP2PCallAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "agentId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceManager.\u003CStartP2PCallAsync\u003Ed__173" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StopRawFile", + "kind": "method", + "name": "StopRawFile", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StopWavAsMic", + "kind": "method", + "name": "StopWavAsMic", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.ChannelCredentials", + "kind": "property", + "name": "ChannelCredentials", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.ChannelId", + "kind": "property", + "name": "ChannelId", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.Connected", + "kind": "property", + "name": "Connected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.IsTransitioning", + "kind": "property", + "name": "IsTransitioning", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.SdpLocal", + "kind": "property", + "name": "SdpLocal", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.SdpRemote", + "kind": "property", + "name": "SdpRemote", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.SessionId", + "kind": "property", + "name": "SessionId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.VoiceAllowedHere", + "kind": "property", + "name": "VoiceAllowedHere", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "VoiceSession", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceSession", + "kind": "class", + "visibility": "public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [ + "System.IDisposable" + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "1" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnDataChannelReady", + "kind": "event", + "name": "OnDataChannelReady", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnGainMapReceived", + "kind": "event", + "name": "OnGainMapReceived", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnMuteMapReceived", + "kind": "event", + "name": "OnMuteMapReceived", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerAudioUpdated", + "kind": "event", + "name": "OnPeerAudioUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerConnectionClosed", + "kind": "event", + "name": "OnPeerConnectionClosed", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerConnectionReady", + "kind": "event", + "name": "OnPeerConnectionReady", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerJoined", + "kind": "event", + "name": "OnPeerJoined", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerLeft", + "kind": "event", + "name": "OnPeerLeft", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerListUpdated", + "kind": "event", + "name": "OnPeerListUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerPositionUpdated", + "kind": "event", + "name": "OnPeerPositionUpdated", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.StructuredData.OSDMap\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerPositionUpdatedTyped", + "kind": "event", + "name": "OnPeerPositionUpdatedTyped", + "static": false, + "visibility": "public", + "type": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnReprovisionFailed", + "kind": "event", + "name": "OnReprovisionFailed", + "static": false, + "visibility": "public", + "type": "System.Action\u003CSystem.Exception\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte[]", + "value": [ + { + "type": "System.Byte", + "value": "2" + }, + { + "type": "System.Byte", + "value": "1" + } + ] + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnReprovisionSucceeded", + "kind": "event", + "name": "OnReprovisionSucceeded", + "static": false, + "visibility": "public", + "type": "System.Action", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "add", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "remove", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.PROVISION_VOICE_ACCOUNT_CAP", + "kind": "constant", + "name": "PROVISION_VOICE_ACCOUNT_CAP", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "ProvisionVoiceAccountRequest" + }, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.VOICE_SIGNALING_CAP", + "kind": "constant", + "name": "VOICE_SIGNALING_CAP", + "static": true, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "System.String", + "value": "VoiceSignalingRequest" + }, + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.CloseSessionAsync", + "kind": "method", + "name": "CloseSessionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceSession.\u003CCloseSessionAsync\u003Ed__159" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.CreatePeerConnectionAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "CreatePeerConnectionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSIPSorcery.Net.RTCPeerConnection\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceSession.\u003CCreatePeerConnectionAsync\u003Ed__123" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.Dispose", + "kind": "method", + "name": "Dispose", + "static": false, + "visibility": "public", + "type": "System.Void", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.GetKnownPeers", + "kind": "method", + "name": "GetKnownPeers", + "static": false, + "visibility": "public", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.RequestProvisionAsync", + "kind": "method", + "name": "RequestProvisionAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceSession.\u003CRequestProvisionAsync\u003Ed__155" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendAvatarArray(System.Collections.Generic.List{LibreMetaverse.UUID})", + "kind": "method", + "name": "SendAvatarArray", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatars", + "type": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendAvatarMap(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID})", + "kind": "method", + "name": "SendAvatarMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "avatars", + "type": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendGainMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Int32})", + "kind": "method", + "name": "SendGainMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "gainMap", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendJoin(System.Boolean)", + "kind": "method", + "name": "SendJoin", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "primary", + "type": "System.Boolean", + "passing": "value", + "optional": true, + "default": { + "type": "System.Boolean", + "value": "True" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendLeave", + "kind": "method", + "name": "SendLeave", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendMuteMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean})", + "kind": "method", + "name": "SendMuteMap", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "muteMap", + "type": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [ + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + } + ] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendPosition(LibreMetaverse.Vector3d,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "SendPosition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "heading", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendPosition(LibreMetaverse.Vector3d,LibreMetaverse.Quaternion,LibreMetaverse.Vector3d,LibreMetaverse.Quaternion)", + "kind": "method", + "name": "SendPosition", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "globalPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "heading", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cameraPos", + "type": "LibreMetaverse.Vector3d", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "cameraHeading", + "type": "LibreMetaverse.Quaternion", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SetPeerGain(LibreMetaverse.UUID,System.Int32)", + "kind": "method", + "name": "SetPeerGain", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "gain", + "type": "System.Int32", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SetPeerMute(LibreMetaverse.UUID,System.Boolean)", + "kind": "method", + "name": "SetPeerMute", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "peerId", + "type": "LibreMetaverse.UUID", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + }, + { + "name": "mute", + "type": "System.Boolean", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.StartAsync(System.Threading.CancellationToken)", + "kind": "method", + "name": "StartAsync", + "static": false, + "visibility": "public", + "type": "System.Threading.Tasks.Task", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "ct", + "type": "System.Threading.CancellationToken", + "passing": "value", + "optional": true, + "default": { + "type": "System.Threading.CancellationToken" + }, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [ + { + "type": "System.Runtime.InteropServices.OptionalAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ] + } + ], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.AsyncStateMachineAttribute", + "constructor_arguments": [ + { + "type": "System.Type", + "value": "LibreMetaverse.Voice.WebRTC.VoiceSession.\u003CStartAsync\u003Ed__121" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.TrySendDataChannelString(System.String)", + "kind": "method", + "name": "TrySendDataChannelString", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [ + { + "name": "str", + "type": "System.String", + "passing": "value", + "optional": false, + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "attributes": [] + } + ], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.ChannelCredentials", + "kind": "property", + "name": "ChannelCredentials", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.ChannelId", + "kind": "property", + "name": "ChannelId", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.Connected", + "kind": "property", + "name": "Connected", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.DataChannel", + "kind": "property", + "name": "DataChannel", + "static": false, + "visibility": "public", + "type": "SIPSorcery.Net.RTCDataChannel", + "nullability": { + "read": "nullable", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.IsPrimary", + "kind": "property", + "name": "IsPrimary", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.ParcelLocalId", + "kind": "property", + "name": "ParcelLocalId", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.SdpLocal", + "kind": "property", + "name": "SdpLocal", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.SdpRemote", + "kind": "property", + "name": "SdpRemote", + "static": false, + "visibility": "public", + "type": "System.String", + "nullability": { + "read": "notnull", + "write": "unknown", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.SessionId", + "kind": "property", + "name": "SessionId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "private", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "private", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.TargetSimulator", + "kind": "property", + "name": "TargetSimulator", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.Simulator", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + }, + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "2" + } + ], + "named_arguments": [] + } + ] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "AvatarPosition", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.#ctor", + "kind": "constructor", + "name": "AvatarPosition", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.AgentId", + "kind": "property", + "name": "AgentId", + "static": false, + "visibility": "public", + "type": "LibreMetaverse.UUID", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.ListenerHeading", + "kind": "property", + "name": "ListenerHeading", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int4\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.ListenerPosition", + "kind": "property", + "name": "ListenerPosition", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int3\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.SenderHeading", + "kind": "property", + "name": "SenderHeading", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int4\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.SenderPosition", + "kind": "property", + "name": "SenderPosition", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int3\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "ESessionType", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "kind": "enum", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.Enum", + "interfaces": [ + "System.IComparable", + "System.IConvertible", + "System.IFormattable", + "System.ISpanFormattable" + ], + "enum_underlying_type": "System.Int32", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType.LOCAL", + "kind": "enum_value", + "name": "LOCAL", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "value": "0" + }, + "numeric_width": 32, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType.MULTIAGENT", + "kind": "enum_value", + "name": "MULTIAGENT", + "static": true, + "visibility": "public", + "type": "LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": true, + "value": { + "type": "LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "value": "1" + }, + "numeric_width": 32, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "Int3", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceSession.Int3", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "Int4", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceSession.Int4", + "kind": "struct", + "visibility": "nested_public", + "abstract": false, + "sealed": true, + "static": false, + "generic_parameters": [], + "base_type": "System.ValueType", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.W", + "kind": "field", + "name": "W", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.X", + "kind": "field", + "name": "X", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.Y", + "kind": "field", + "name": "Y", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + }, + { + "doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.Z", + "kind": "field", + "name": "Z", + "static": false, + "visibility": "public", + "type": "System.Int32", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "read_only": false, + "constant": false, + "attributes": [] + } + ] + }, + { + "doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState", + "namespace": "LibreMetaverse.Voice.WebRTC", + "name": "PeerAudioState", + "signature": "LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState", + "kind": "class", + "visibility": "nested_public", + "abstract": false, + "sealed": false, + "static": false, + "generic_parameters": [], + "base_type": "System.Object", + "interfaces": [], + "attributes": [ + { + "type": "System.Runtime.CompilerServices.NullableContextAttribute", + "constructor_arguments": [ + { + "type": "System.Byte", + "value": "0" + } + ], + "named_arguments": [] + } + ], + "members": [ + { + "doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.#ctor", + "kind": "constructor", + "name": "PeerAudioState", + "static": false, + "visibility": "public", + "return_attributes": [], + "accessors": [], + "generic_parameters": [], + "parameters": [], + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.JoinedPrimary", + "kind": "property", + "name": "JoinedPrimary", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.Left", + "kind": "property", + "name": "Left", + "static": false, + "visibility": "public", + "type": "System.Boolean", + "nullability": { + "read": "notnull", + "write": "notnull", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.ModeratorMuted", + "kind": "property", + "name": "ModeratorMuted", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.Power", + "kind": "property", + "name": "Power", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Int32\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + }, + { + "doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.VoiceActive", + "kind": "property", + "name": "VoiceActive", + "static": false, + "visibility": "public", + "type": "System.Nullable\u003CSystem.Boolean\u003E", + "nullability": { + "read": "nullable", + "write": "nullable", + "generic_arguments": [] + }, + "return_attributes": [], + "accessors": [ + { + "kind": "get", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + }, + { + "kind": "set", + "visibility": "public", + "attributes": [ + { + "type": "System.Runtime.CompilerServices.CompilerGeneratedAttribute", + "constructor_arguments": [], + "named_arguments": [] + } + ], + "return_attributes": [] + } + ], + "generic_parameters": [], + "parameters": [], + "getter_visibility": "public", + "setter_visibility": "public", + "attributes": [] + } + ] + } + ] + } + ], + "external_types": [ + { + "doc_id": "T:CoreJ2K.Util.IImage", + "signature": "CoreJ2K.Util.IImage", + "kind": "interface", + "assembly": { + "name": "CoreJ2K", + "version": "2.3.3.91", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.Create(System.Int32,System.Int32,System.Int32,System.Byte[])", + "position": "return_type", + "signature": "CoreJ2K.Util.IImage" + } + ] + }, + { + "doc_id": "T:CoreJ2K.Util.IImageCreator", + "signature": "CoreJ2K.Util.IImageCreator", + "kind": "interface", + "assembly": { + "name": "CoreJ2K", + "version": "2.3.3.91", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImageCreator", + "position": "interface", + "signature": "CoreJ2K.Util.IImageCreator" + } + ] + }, + { + "doc_id": "T:CoreJ2K.Util.ImageCreator\u00601", + "signature": "CoreJ2K.Util.ImageCreator\u003CTBase\u003E", + "kind": "class", + "assembly": { + "name": "CoreJ2K", + "version": "2.3.3.91", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImageCreator", + "position": "base_type", + "signature": "CoreJ2K.Util.ImageCreator\u003CLibreMetaverse.Imaging.ManagedImage\u003E" + } + ] + }, + { + "doc_id": "T:CoreJ2K.Util.InterleavedImage", + "signature": "CoreJ2K.Util.InterleavedImage", + "kind": "class", + "assembly": { + "name": "CoreJ2K", + "version": "2.3.3.91", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageInterleavedExtensions.ToManagedImage(CoreJ2K.Util.InterleavedImage)", + "position": "parameter:image", + "signature": "CoreJ2K.Util.InterleavedImage" + } + ] + }, + { + "doc_id": "T:CoreJ2K.j2k.image.BlkImgDataSrc", + "signature": "CoreJ2K.j2k.image.BlkImgDataSrc", + "kind": "interface", + "assembly": { + "name": "CoreJ2K", + "version": "2.3.3.91", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.ToPortableImageSource(System.Object)", + "position": "return_type", + "signature": "CoreJ2K.j2k.image.BlkImgDataSrc" + } + ] + }, + { + "doc_id": "T:MessagePack.Formatters.IMessagePackFormatter", + "signature": "MessagePack.Formatters.IMessagePackFormatter", + "kind": "interface", + "assembly": { + "name": "MessagePack", + "version": "3.1.8.0", + "culture": "neutral", + "public_key_token": "b4a0369545f0a1be" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Formatters.UUIDFormatter", + "position": "interface", + "signature": "MessagePack.Formatters.IMessagePackFormatter" + } + ] + }, + { + "doc_id": "T:MessagePack.Formatters.IMessagePackFormatter\u00601", + "signature": "MessagePack.Formatters.IMessagePackFormatter\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "MessagePack", + "version": "3.1.8.0", + "culture": "neutral", + "public_key_token": "b4a0369545f0a1be" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Formatters.UUIDFormatter", + "position": "interface", + "signature": "MessagePack.Formatters.IMessagePackFormatter\u003CLibreMetaverse.UUID\u003E" + } + ] + }, + { + "doc_id": "T:MessagePack.MessagePackReader", + "signature": "MessagePack.MessagePackReader", + "kind": "struct", + "assembly": { + "name": "MessagePack", + "version": "3.1.8.0", + "culture": "neutral", + "public_key_token": "b4a0369545f0a1be" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Deserialize(MessagePack.MessagePackReader@,MessagePack.MessagePackSerializerOptions)", + "position": "parameter:reader", + "signature": "MessagePack.MessagePackReader" + } + ] + }, + { + "doc_id": "T:MessagePack.MessagePackSerializerOptions", + "signature": "MessagePack.MessagePackSerializerOptions", + "kind": "class", + "assembly": { + "name": "MessagePack", + "version": "3.1.8.0", + "culture": "neutral", + "public_key_token": "b4a0369545f0a1be" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Deserialize(MessagePack.MessagePackReader@,MessagePack.MessagePackSerializerOptions)", + "position": "parameter:options", + "signature": "MessagePack.MessagePackSerializerOptions" + }, + { + "owner_doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Serialize(MessagePack.MessagePackWriter@,LibreMetaverse.UUID,MessagePack.MessagePackSerializerOptions)", + "position": "parameter:options", + "signature": "MessagePack.MessagePackSerializerOptions" + } + ] + }, + { + "doc_id": "T:MessagePack.MessagePackWriter", + "signature": "MessagePack.MessagePackWriter", + "kind": "struct", + "assembly": { + "name": "MessagePack", + "version": "3.1.8.0", + "culture": "neutral", + "public_key_token": "b4a0369545f0a1be" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Serialize(MessagePack.MessagePackWriter@,LibreMetaverse.UUID,MessagePack.MessagePackSerializerOptions)", + "position": "parameter:writer", + "signature": "MessagePack.MessagePackWriter" + } + ] + }, + { + "doc_id": "T:Microsoft.Extensions.DependencyInjection.IServiceCollection", + "signature": "Microsoft.Extensions.DependencyInjection.IServiceCollection", + "kind": "interface", + "assembly": { + "name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "adb9793829ddae60" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.GridClientServiceCollectionExtensions.AddGridClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{LibreMetaverse.Settings})", + "position": "parameter:services", + "signature": "Microsoft.Extensions.DependencyInjection.IServiceCollection" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridClientServiceCollectionExtensions.AddGridClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{LibreMetaverse.Settings})", + "position": "return_type", + "signature": "Microsoft.Extensions.DependencyInjection.IServiceCollection" + } + ] + }, + { + "doc_id": "T:Microsoft.Extensions.Logging.ILoggerFactory", + "signature": "Microsoft.Extensions.Logging.ILoggerFactory", + "kind": "interface", + "assembly": { + "name": "Microsoft.Extensions.Logging.Abstractions", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "adb9793829ddae60" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Logger.CreateDefaultConsoleLoggerFactory", + "position": "return_type", + "signature": "Microsoft.Extensions.Logging.ILoggerFactory" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.SetLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", + "position": "parameter:factory", + "signature": "Microsoft.Extensions.Logging.ILoggerFactory" + } + ] + }, + { + "doc_id": "T:Microsoft.Extensions.Logging.LogLevel", + "signature": "Microsoft.Extensions.Logging.LogLevel", + "kind": "enum", + "assembly": { + "name": "Microsoft.Extensions.Logging.Abstractions", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "adb9793829ddae60" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Settings.LogLevel", + "position": "field_type", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient,System.Exception)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,System.Exception)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.BeginInvoke(System.Object,Microsoft.Extensions.Logging.LogLevel,System.AsyncCallback,System.Object)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.Invoke(System.Object,Microsoft.Extensions.Logging.LogLevel)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "parameter:level", + "signature": "Microsoft.Extensions.Logging.LogLevel" + } + ] + }, + { + "doc_id": "T:SIPSorcery.Net.RTCDataChannel", + "signature": "SIPSorcery.Net.RTCDataChannel", + "kind": "class", + "assembly": { + "name": "SIPSorcery", + "version": "8.0.23.0", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.DataChannel", + "position": "property_type", + "signature": "SIPSorcery.Net.RTCDataChannel" + } + ] + }, + { + "doc_id": "T:SIPSorcery.Net.RTCPeerConnection", + "signature": "SIPSorcery.Net.RTCPeerConnection", + "kind": "class", + "assembly": { + "name": "SIPSorcery", + "version": "8.0.23.0", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.CreatePeerConnectionAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "SIPSorcery.Net.RTCPeerConnection" + } + ] + }, + { + "doc_id": "T:SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum", + "signature": "SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum", + "kind": "enum", + "assembly": { + "name": "SIPSorceryMedia.Abstractions", + "version": "8.0.12.0", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceRawSample(SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum,System.UInt32,System.Int16[])", + "position": "parameter:samplingRate", + "signature": "SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum" + } + ] + }, + { + "doc_id": "T:SIPSorceryMedia.SoundFlow.SoundFlowAudioEndPoint", + "signature": "SIPSorceryMedia.SoundFlow.SoundFlowAudioEndPoint", + "kind": "class", + "assembly": { + "name": "SIPSorceryMedia.SoundFlow", + "version": "0.1.1.0", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.EndPoint", + "position": "property_type", + "signature": "SIPSorceryMedia.SoundFlow.SoundFlowAudioEndPoint" + } + ] + }, + { + "doc_id": "T:SIPSorceryMedia.SoundFlow.SoundFlowAudioSource", + "signature": "SIPSorceryMedia.SoundFlow.SoundFlowAudioSource", + "kind": "class", + "assembly": { + "name": "SIPSorceryMedia.SoundFlow", + "version": "0.1.1.0", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.Source", + "position": "property_type", + "signature": "SIPSorceryMedia.SoundFlow.SoundFlowAudioSource" + } + ] + }, + { + "doc_id": "T:SkiaSharp.SKBitmap", + "signature": "SkiaSharp.SKBitmap", + "kind": "class", + "assembly": { + "name": "SkiaSharp", + "version": "4.150.0.0", + "culture": "neutral", + "public_key_token": "0738eb9f132ed756" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Skia.SkiaTextureCodec.ToManagedImage(SkiaSharp.SKBitmap)", + "position": "parameter:bitmap", + "signature": "SkiaSharp.SKBitmap" + } + ] + }, + { + "doc_id": "T:SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel", + "signature": "SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel", + "kind": "enum", + "assembly": { + "name": "SoundFlow.Extensions.WebRtc.Apm", + "version": "1.4.0.0", + "culture": "neutral", + "public_key_token": "" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:nsLevel", + "signature": "SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.SortedList\u00602", + "signature": "System.Collections.Generic.SortedList\u003CTKey, TValue\u003E", + "kind": "class", + "assembly": { + "name": "System.Collections", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.ImageDownload.PacketsSeen", + "position": "field_type", + "signature": "System.Collections.Generic.SortedList\u003CSystem.UInt16, System.UInt16\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParams.Params", + "position": "field_type", + "signature": "System.Collections.Generic.SortedList\u003CSystem.Int32, LibreMetaverse.VisualParam\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.LodMeshes", + "position": "property_type", + "signature": "System.Collections.Generic.SortedList\u003CSystem.Int32, System.Object\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Concurrent.ConcurrentDictionary\u00602", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CTKey, TValue\u003E", + "kind": "class", + "assembly": { + "name": "System.Collections.Concurrent", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.GroupChatSessions", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, System.Collections.Generic.List\u003CLibreMetaverse.ChatSessionMember\u003E\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.MuteList", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.String, LibreMetaverse.MuteEntry\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.SignaledAnimations", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetDownload.outOfOrderPackets", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, System.Byte[]\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.GlobalToLocalID", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, System.UInt32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ObjectsAvatars", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.UInt32, LibreMetaverse.Avatar\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ObjectsPrimitives", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.UInt32, LibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.Parcels", + "position": "field_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimParcelsDownloadedEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Concurrent.ConcurrentDictionary{System.Int32,LibreMetaverse.Parcel},System.Int32[0:,0:])", + "position": "parameter:simParcels", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.ActiveGestures", + "position": "property_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.SimParcelsDownloadedEventArgs.Parcels", + "position": "property_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.Parcels", + "position": "property_type", + "signature": "System.Collections.Concurrent.ConcurrentDictionary\u003CSystem.Int32, LibreMetaverse.Parcel\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Frozen.FrozenDictionary\u00602", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CTKey, TValue\u003E", + "kind": "class", + "assembly": { + "name": "System.Collections.Immutable", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.IMG_USE_BAKED_INDICES", + "position": "field_type", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.AvatarTextureIndex\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSET_TYPE_TO_EXTENSION", + "position": "field_type", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.AssetType, System.String\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.EXTENSION_TO_ASSET_TYPE", + "position": "field_type", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CSystem.String, LibreMetaverse.AssetType\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animations.ToDictionary", + "position": "return_type", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Sounds.ToDictionary", + "position": "return_type", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslSyntax.Keywords", + "position": "property_type", + "signature": "System.Collections.Frozen.FrozenDictionary\u003CSystem.String, LibreMetaverse.LslSyntax.LslKeyword\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Immutable.ImmutableDictionary\u00602", + "signature": "System.Collections.Immutable.ImmutableDictionary\u003CTKey, TValue\u003E", + "kind": "class", + "assembly": { + "name": "System.Collections.Immutable", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.ExternalItems", + "position": "property_type", + "signature": "System.Collections.Immutable.ImmutableDictionary\u003CSystem.Guid, LibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.Folders", + "position": "property_type", + "signature": "System.Collections.Immutable.ImmutableDictionary\u003CSystem.Guid, LibreMetaverse.RLV.RlvSharedFolder\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.Items", + "position": "property_type", + "signature": "System.Collections.Immutable.ImmutableDictionary\u003CSystem.Guid, System.Collections.Immutable.ImmutableList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Immutable.ImmutableList\u00601", + "signature": "System.Collections.Immutable.ImmutableList\u003CT\u003E", + "kind": "class", + "assembly": { + "name": "System.Collections.Immutable", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.Items", + "position": "property_type", + "signature": "System.Collections.Immutable.ImmutableList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvRestriction.Args", + "position": "property_type", + "signature": "System.Collections.Immutable.ImmutableList\u003CSystem.Object\u003E" + } + ] + }, + { + "doc_id": "T:System.Net.Http.Headers.MediaTypeHeaderValue", + "signature": "System.Net.Http.Headers.MediaTypeHeaderValue", + "kind": "class", + "assembly": { + "name": "System.Net.Http", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.HttpCapsClient.HDR_LLSD_BINARY", + "position": "field_type", + "signature": "System.Net.Http.Headers.MediaTypeHeaderValue" + }, + { + "owner_doc_id": "F:LibreMetaverse.HttpCapsClient.HDR_LLSD_JSON", + "position": "field_type", + "signature": "System.Net.Http.Headers.MediaTypeHeaderValue" + }, + { + "owner_doc_id": "F:LibreMetaverse.HttpCapsClient.HDR_LLSD_XML", + "position": "field_type", + "signature": "System.Net.Http.Headers.MediaTypeHeaderValue" + } + ] + }, + { + "doc_id": "T:System.Net.Http.HttpClient", + "signature": "System.Net.Http.HttpClient", + "kind": "class", + "assembly": { + "name": "System.Net.Http", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.HttpCapsClient", + "position": "base_type", + "signature": "System.Net.Http.HttpClient" + } + ] + }, + { + "doc_id": "T:System.Net.Http.HttpMessageHandler", + "signature": "System.Net.Http.HttpMessageHandler", + "kind": "class", + "assembly": { + "name": "System.Net.Http", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.#ctor(System.Net.Http.HttpMessageHandler)", + "position": "parameter:handler", + "signature": "System.Net.Http.HttpMessageHandler" + } + ] + }, + { + "doc_id": "T:System.Net.Http.HttpResponseMessage", + "signature": "System.Net.Http.HttpResponseMessage", + "kind": "class", + "assembly": { + "name": "System.Net.Http", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.CompletionTcs", + "position": "field_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(LibreMetaverse.Http.DownloadRequest)", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Net.Http.HttpResponseMessage" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.SetFeatures(System.Net.Http.HttpResponseMessage,System.Byte[],System.Exception)", + "position": "parameter:response", + "signature": "System.Net.Http.HttpResponseMessage" + } + ] + }, + { + "doc_id": "T:System.Net.EndPoint", + "signature": "System.Net.EndPoint", + "kind": "class", + "assembly": { + "name": "System.Net.Primitives", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.UDPPacketBuffer.RemoteEndPoint", + "position": "field_type", + "signature": "System.Net.EndPoint" + } + ] + }, + { + "doc_id": "T:System.Net.IPAddress", + "signature": "System.Net.IPAddress", + "kind": "class", + "assembly": { + "name": "System.Net.Primitives", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.IP", + "position": "field_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.IP", + "position": "field_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Address", + "position": "field_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.IP", + "position": "field_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.BindAddress", + "position": "field_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromIP(System.Net.IPAddress)", + "position": "parameter:address", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToIP(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:ip", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:ip", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:ip", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.HostnameToIPv4(System.String)", + "position": "return_type", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IPToUInt(System.Net.IPAddress)", + "position": "parameter:address", + "signature": "System.Net.IPAddress" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.SimIP", + "position": "property_type", + "signature": "System.Net.IPAddress" + } + ] + }, + { + "doc_id": "T:System.Net.IPEndPoint", + "signature": "System.Net.IPEndPoint", + "kind": "class", + "assembly": { + "name": "System.Net.Primitives", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.FindSimulator(System.Net.IPEndPoint)", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.#ctor(LibreMetaverse.GridClient,System.Net.IPEndPoint,System.UInt64,System.UInt32,System.UInt32)", + "position": "parameter:address", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Byte[],System.Int32,System.Net.IPEndPoint,System.Int32)", + "position": "parameter:destination", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint)", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint,System.Byte[])", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint,System.Int32)", + "position": "parameter:endPoint", + "signature": "System.Net.IPEndPoint" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.IPEndPoint", + "position": "property_type", + "signature": "System.Net.IPEndPoint" + } + ] + }, + { + "doc_id": "T:System.Net.Sockets.SocketException", + "signature": "System.Net.Sockets.SocketException", + "kind": "class", + "assembly": { + "name": "System.Net.Primitives", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.Connect(System.String,System.Int32)", + "position": "return_type", + "signature": "System.Net.Sockets.SocketException" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.BeginInvoke(System.Net.Sockets.SocketException,System.AsyncCallback,System.Object)", + "position": "parameter:se", + "signature": "System.Net.Sockets.SocketException" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.Invoke(System.Net.Sockets.SocketException)", + "position": "parameter:se", + "signature": "System.Net.Sockets.SocketException" + } + ] + }, + { + "doc_id": "T:System.Action", + "signature": "System.Action", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PongReceived", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionChangeDetected", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionTransitionCompleted", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnReprovisionSucceeded", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerConnectionClosed", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerConnectionReady", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnDataChannelReady", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerConnectionClosed", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerConnectionReady", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnReprovisionSucceeded", + "position": "event_type", + "signature": "System.Action" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.DisposalGuard.#ctor(System.Action)", + "position": "parameter:onDispose", + "signature": "System.Action" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:action", + "signature": "System.Action" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:action", + "signature": "System.Action" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.Interval(System.TimeSpan,System.Action,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:action", + "signature": "System.Action" + } + ] + }, + { + "doc_id": "T:System.Action\u00601", + "signature": "System.Action\u003CT\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnPlaybackActiveChanged", + "position": "event_type", + "signature": "System.Action\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnRecordingActiveChanged", + "position": "event_type", + "signature": "System.Action\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.GainMapReceived", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.MuteMapReceived", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerJoined", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerLeft", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerListUpdated", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.GainMapReceived", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.MuteMapReceived", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceJoined", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceLeft", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallAccepted", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallDeclined", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallEnded", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallIncoming", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallStarted", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionTransitionFailed", + "position": "event_type", + "signature": "System.Action\u003CSystem.Exception\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnReprovisionFailed", + "position": "event_type", + "signature": "System.Action\u003CSystem.Exception\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnVoicePermissionChanged", + "position": "event_type", + "signature": "System.Action\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerJoined", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerLeft", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerListUpdated", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnGainMapReceived", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnMuteMapReceived", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerJoined", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerLeft", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerListUpdated", + "position": "event_type", + "signature": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnReprovisionFailed", + "position": "event_type", + "signature": "System.Action\u003CSystem.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00600,\u00602}})", + "position": "parameter:action", + "signature": "System.Action\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey1, TValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00601,\u00602}})", + "position": "parameter:action", + "signature": "System.Action\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey2, TValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{\u00602})", + "position": "parameter:action", + "signature": "System.Action\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:subscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:unsubscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:subscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:unsubscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:subscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:unsubscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscription\u00601.#ctor(System.Action{System.EventHandler{\u00600}},System.Action{System.EventHandler{\u00600}},System.EventHandler{\u00600})", + "position": "parameter:subscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscription\u00601.#ctor(System.Action{System.EventHandler{\u00600}},System.Action{System.EventHandler{\u00600}},System.EventHandler{\u00600})", + "position": "parameter:unsubscribe", + "signature": "System.Action\u003CSystem.EventHandler\u003CTEventArgs\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridClientServiceCollectionExtensions.AddGridClient(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{LibreMetaverse.Settings})", + "position": "parameter:configure", + "signature": "System.Action\u003CLibreMetaverse.Settings\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "parameter:callback", + "signature": "System.Action\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken,System.Action{System.Collections.Generic.List{LibreMetaverse.InventoryItem}})", + "position": "parameter:callback", + "signature": "System.Action\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Action\u00602", + "signature": "System.Action\u003CT1, T2\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnAudioSourceEncodedSample", + "position": "event_type", + "signature": "System.Action\u003CSystem.UInt32, System.Byte[]\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerAudioUpdated", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerPositionUpdated", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.StructuredData.OSDMap\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceJoinFailed", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, System.Exception\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallFailed", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, System.Exception\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerAudioUpdated", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerPositionUpdated", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.StructuredData.OSDMap\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerPositionUpdatedTyped", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerAudioUpdated", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerPositionUpdated", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.StructuredData.OSDMap\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerPositionUpdatedTyped", + "position": "event_type", + "signature": "System.Action\u003CLibreMetaverse.UUID, LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeCancelAndDispose(System.Threading.CancellationTokenSource,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Action\u003CSystem.String, System.Exception\u003E" + } + ] + }, + { + "doc_id": "T:System.Action\u00603", + "signature": "System.Action\u003CT1, T2, T3\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnParcelVoiceInfo", + "position": "event_type", + "signature": "System.Action\u003CSystem.String, System.Int32, System.String\u003E" + } + ] + }, + { + "doc_id": "T:System.ApplicationException", + "signature": "System.ApplicationException", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Packets.MalformedDataException", + "position": "base_type", + "signature": "System.ApplicationException" + } + ] + }, + { + "doc_id": "T:System.Array", + "signature": "System.Array", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.CopyTo(System.Array,System.Int32)", + "position": "parameter:array", + "signature": "System.Array" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array)", + "position": "parameter:src", + "signature": "System.Array" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array,System.Int32)", + "position": "parameter:src", + "signature": "System.Array" + } + ] + }, + { + "doc_id": "T:System.AsyncCallback", + "signature": "System.AsyncCallback", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.BeginInvoke(System.String,LibreMetaverse.UUID,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.BeginInvoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.BeginInvoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.BeginInvoke(System.String,LibreMetaverse.Assets.RegionSettings,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.BeginInvoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.BeginInvoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.BeginInvoke(System.String,LibreMetaverse.StructuredData.OSDMap,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.BeginInvoke(System.Object,Microsoft.Extensions.Logging.LogLevel,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.BeginInvoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Func.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.BeginInvoke(LibreMetaverse.LslTools.Parser,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.BeginInvoke(LibreMetaverse.LslTools.Lexer,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.BeginInvoke(System.Net.Sockets.SocketException,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.BeginInvoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.BeginInvoke(System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.BeginInvoke(System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.BeginInvoke(System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:callback", + "signature": "System.AsyncCallback" + } + ] + }, + { + "doc_id": "T:System.Attribute", + "signature": "System.Attribute", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.EnumInfoAttribute", + "position": "base_type", + "signature": "System.Attribute" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.RendererNameAttribute", + "position": "base_type", + "signature": "System.Attribute" + } + ] + }, + { + "doc_id": "T:System.Boolean", + "signature": "System.Boolean", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnPlaybackActiveChanged", + "position": "event_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnRecordingActiveChanged", + "position": "event_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.MuteMapReceived", + "position": "event_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.MuteMapReceived", + "position": "event_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnVoicePermissionChanged", + "position": "event_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnMuteMapReceived", + "position": "event_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentSettings.DisableUpdateDuplicateCheck", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentSettings.MultipleSims", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentSettings.SendAppearance", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentSettings.SendThrottle", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentSettings.SendUpdates", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentSettings.SendUpdatesRegularly", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Animesh.JointPose.HasPosition", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Animesh.JointPose.HasRotation", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetCacheSettings.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Asset.Temporary", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepAnimation.AnimationStart", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepWait.WaitForAnimation", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepWait.WaitForTime", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.AllowedDrop", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.DieAtEdge", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PassTouches", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Phantom", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ReturnAtEdge", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Sandbox", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Selected", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Temporary", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.UsePhysics", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.VolumeDetect", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.AllowDamage", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.AllowLandJoinDivide", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.AllowLandResell", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.BlockFly", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.BlockLandShowInSearch", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.BlockTerraform", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.DisableCollisions", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.DisablePhysics", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.DisableScripts", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.FixedSun", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.RestrictPushing", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.UseEstateSun", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AvatarGroup.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.AvatarGroup.ListInProfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.Loop", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ChatSessionMember.CanVoiceChat", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ChatSessionMember.IsModerator", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ChatSessionMember.MuteText", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ChatSessionMember.MuteVoice", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ConnectionSettings.MfaEnabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.Online", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.Auction", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.ForSale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.DrivenParamInfo.HasRange", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.ListInProfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.OpenEnrollment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.ShowInList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupMember.IsOwner", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupNoticesListEntry.HasAttachment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupTitle.Selected", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelUploader.IncludePhysicsStub", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelUploader.UseModelAsPhysics", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.InstantMessage.GroupIM", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoggingSettings.LogDiskCache", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoggingSettings.LogNames", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoggingSettings.LogResends", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.AgreeToTos", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.MfaEnabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.ReadCritical", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Deprecated", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.GodMode", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSToolsException.handled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_defined", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_emitted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ErrorHandler.throwExceptions", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Lexer.m_debug", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Parser.m_debug", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Parser.m_stkdebug", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Path.valid", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ProdItem.m_done", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Production.m_actionsOnly", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ResWds.m_upper", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.m_lalrParser", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.toupper", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.usingEOF", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.m_concrete", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.cs0syntax.defconseen", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapPacket.Encoded", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapPacket.Trusted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.AutoLoop", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.AutoPlay", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.AutoScale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.AutoZoom", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.EnableWhiteList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.InteractOnFirstClick", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData.ListInProfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.IsMaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.IsOpenEnrollment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.IsShownInSearch", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.HideAge", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.IsDisplayNameDefault", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.IsMatureProfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.AlterNavmeshObjects", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.AlterPermanentObjects", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.CanModifyNavmesh", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.HasModifiedNavmesh", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.LanguageIsPublic", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo.TooComplex", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.RequestValue", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.GroupIM", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Voice", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.CanVoiceChat", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.IsModerator", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.MuteText", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.MuteVoice", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.ModeratedVoice", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.VoiceEnabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.Auction", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ForSale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueAck.Done", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.OnlineStatus", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AnyAVSounds", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.GroupAVSounds", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaAutoScale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaLoop", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ObscureMedia", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ObscureMusic", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Privacy", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyAgeUnverified", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyAnonymous", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyIdentified", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionDenyTransacted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RegionPushOverride", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SeeAVs", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SnapSelection", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.AnyAVSounds", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.GroupAVSounds", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaAutoScale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaLoop", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.ObscureMedia", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.ObscureMusic", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Privacy", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.SeeAVs", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Mono", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Running", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.LanguagePublic", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.ScriptRunning", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Fullbright", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.Compiled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Compiled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.VertexBuffersEnabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ObjectMovementUpdate.Avatar", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.EnableSimStats", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.SendPings", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.ThrottleOutgoing", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.TrackUtilization", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.Modal", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.StartAnim", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.StoreLocal", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.Tempfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.AttachmentNeedsSave", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.IsTrial", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ListInProfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.WebProfilesDisabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.AutoPilot", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ForceMouselook", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.TexturesChanged", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ChangedGrid", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AlwaysRun", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ChangedGrid", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.OpenEnrollment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ShowInList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.OpenEnrollment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ShowInList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.Disconnect", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.Delete", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.Auction", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ForSale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Online", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Auction", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ForSale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FetchFolders", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FetchItems", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ResetList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.AlreadyVoted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.IsOwner", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.HasAttachment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.OpenEnrollment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ShowInList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.Selected", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.AppendedAcks", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.Reliable", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.Resent", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.Zerocoded", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.IsReadable", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.OwnerIsGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.IsOwnerGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.TransactionSuccess", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.IsDestGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.IsSourceGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.Stamp", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.Stamp", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.Force", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.BypassRaycast", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.CopyCenters", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.CopyRotates", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.RayEndIsIntersection", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamInUse", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.CastsShadows", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.IsPhantom", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.IsTemporary", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.UsePhysics", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.IncludeInSearch", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.Override", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.Override", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Packet.HasVariableBlocks", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.Final", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.RemoveContribution", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.Final", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.OnlineStatus", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.RegionDenyAgeUnverified", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionDenyAnonymous", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionDenyIdentified", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionDenyTransacted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RegionPushOverride", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SnapSelection", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.RegionAllowEnvironmentOverride", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.RegionAllowAccessOverride", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.SnapSelection", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.TopPick", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.TopPick", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.IsEstateManager", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.UseEstateSun", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.Godlike", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Final", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.DeleteOnCompletion", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.UseBigPackets", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.IsPremium", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FirstDetachAll", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RayEndIsIntersection", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RemoveItem", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.RezSelected", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RayEndIsIntersection", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RemoveItem", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.RezSelected", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.TransactionSuccess", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.IsDestGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.IsSourceGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.PassToAgent", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.TakeControls", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.Running", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.AlwaysRun", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.AcceptNotices", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ListInProfile", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.Running", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.CanAcceptAgents", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.CanAcceptTasks", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.CanAcceptAgents", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.HasTelehub", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.HasTelehub", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.NeedsValidation", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.AddItem", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.UseExistingAsset", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.SimApproved", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.OpenEnrollment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ShowInList", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.AllowPublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.IsForSale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.MaturePublish", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ShowDir", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.GroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.IMViaEMail", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.IMViaEMail", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.Data", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.AnyAVSounds", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.GroupAVSounds", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.ObscureMedia", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.ObscureMusic", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.RegionDenyAgeUnverified", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.RegionDenyAnonymous", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.RegionPushOverride", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.SeeAVs", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.Mature", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.IsGroupOwned", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.OnlineStatus", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaAutoScale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaLoop", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelSettings.AlwaysRequestAcl", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelSettings.AlwaysRequestDwell", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelSettings.PoolParcelData", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelSettings.TrackParcels", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.calcVertexNormals", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.sphereMode", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.viewerMode", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.calcVertexNormals", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.IsAttachment", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.TopPick", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.LockScaleIfJointPosition", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.HasDetailTexCoords", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.HasWeights", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.LockScaleIfJointPosition", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Path.Open", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.Concave", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.Open", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Cap", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Flat", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.EnableInventoryStore", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.EnableLibraryStore", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.AgentMovementComplete", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.IsEstateManager", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.DownloadingParcelMap", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.SkeletalBoneInfo.HasPositionDeformation", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.TexturePipelineSettings.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.TexturePipelineSettings.UseHttpTextures", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.TransactionInfo.IsDestGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.TransactionInfo.IsSourceGroup", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Transfer.Success", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.InternStrings", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualAlphaParam.MultiplyBlend", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualAlphaParam.SkipIfZero", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.IsBumpAttribute", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.IsMicActive", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.IsLocallyMuted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.IsModeratorMuted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.IsSpeaking", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.IsMuted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.IsSpeaking", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.IsChannel", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.IsIncoming", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.HasAudio", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.HasText", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.HasVideo", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.Terminated", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.IsChannel", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.IsFocused", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.IsMuted", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.TransmitEnabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.Enabled", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.VolumeMorphInfo.HasPosition", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.VolumeMorphInfo.HasScale", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.AlwaysDecodeObjects", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.AlwaysRequestObjects", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.CachePrimitives", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.StoreLandPatches", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.TrackAvatars", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.TrackObjects", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "F:LibreMetaverse.WorldSettings.UseInterpolationTimer", + "position": "field_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentAccessEventArgs.#ctor(System.Boolean,System.String)", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendManualUpdate(LibreMetaverse.AgentManager.ControlFlags,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Quaternion,System.Single,LibreMetaverse.AgentFlags,LibreMetaverse.AgentState,System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendUpdate(System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendUpdate(System.Boolean,LibreMetaverse.Simulator)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.TurnToward(LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:sendUpdate", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.TurnToward(LibreMetaverse.Vector3,System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.UpdateFromHeading(System.Double,System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Animate(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean},System.Boolean)", + "position": "parameter:animations", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Animate(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean},System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AnimationStart(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AnimationStop(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilotCancel", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Chat(System.String,System.Int32,LibreMetaverse.ChatType,System.Boolean)", + "position": "parameter:splitLargeMessages", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Crouch(System.Boolean)", + "position": "parameter:crouching", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Fly(System.Boolean)", + "position": "parameter:start", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ForgetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAttachmentResourcesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GoHomeAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GroupInviteRespond(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:accept", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsCrossing", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsExperienceAdminAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsExperienceContributorAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsGroupMessage(LibreMetaverse.InstantMessage)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Jump(System.Boolean)", + "position": "parameter:jumping", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ModerateChatSessions(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:moderate", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PickInfoUpdate(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID,System.String,LibreMetaverse.Vector3d,LibreMetaverse.UUID,System.String)", + "position": "parameter:topPick", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "position": "parameter:agents", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:tooComplex", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:ignoreCapsStatus", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePermissionAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Stand", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportLureRespond(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:accept", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateAgentLanguageAsync(System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:isPublic", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Vector3d,System.String,System.String,System.Boolean)", + "position": "parameter:autoRenew", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,System.String,System.String,System.Boolean)", + "position": "parameter:autoRenew", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.CanAttach(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.CanDetach(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(LibreMetaverse.InventoryItem,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AttachAsync(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanAttachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanDetachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.IsObjectDescendentOfAsync(LibreMetaverse.InventoryBase,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.ReplaceOutfitAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.CanAttach(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.CanDetach(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddAttachments(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Boolean)", + "position": "parameter:removeExistingFirst", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddAttachments(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Boolean)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(LibreMetaverse.InventoryItem,System.Boolean)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.Permissions,System.UInt32,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "parameter:replace", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.IsItemWorn(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "position": "parameter:safe", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RequestSetAppearance(System.Boolean)", + "position": "parameter:forceRebake", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ServerBakingRegion", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.WearOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryBase},System.Boolean)", + "position": "parameter:replaceItems", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.isItemAttached(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.isItemAttached(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceSetEventArgs.#ctor(System.Boolean)", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.HasAsset(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCache(LibreMetaverse.UUID,System.Byte[])", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCacheAsync(LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytes(LibreMetaverse.UUID,System.Byte[]@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,System.Threading.CancellationToken)", + "position": "parameter:priority", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:priority", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:priority", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetXfer(System.String,System.Boolean,System.Boolean,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean)", + "position": "parameter:deleteOnCompletion", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetXfer(System.String,System.Boolean,System.Boolean,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean)", + "position": "parameter:fromCache", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetXfer(System.String,System.Boolean,System.Boolean,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean)", + "position": "parameter:useBigPackets", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:priority", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:priority", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUpload(LibreMetaverse.UUID@,LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID)", + "position": "parameter:storeLocal", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadAsync(LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:storeLocal", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Asset.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetAnimation.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetGesture.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetLandmark.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaCutoff(System.Single,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaMode(LibreMetaverse.Assets.GltfAlphaMode,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetBaseColorFactor(LibreMetaverse.Color4,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetDoubleSided(System.Boolean,System.Boolean)", + "position": "parameter:doubleSided", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetDoubleSided(System.Boolean,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetEmissiveFactor(LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetMetallicFactor(System.Single,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetRoughnessFactor(System.Single,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureId(System.Int32,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:forOverride", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMesh.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMutable.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetNotecard.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.DecodeXml(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetScriptText.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSettings.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetTexture.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetWearable.Decode", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.ToJson(System.Boolean)", + "position": "parameter:pretty", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.Equals(LibreMetaverse.Assets.GltfTextureTransform)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:agc", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:agc1", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:echoCancellation", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:highPassFilter", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:noiseSuppression", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnsureEndpoint", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcMute(System.UInt32,System.Boolean)", + "position": "parameter:muted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartFilePlayback(System.String,System.Boolean)", + "position": "parameter:loop", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmFileLoop(System.String,System.Int32,System.Boolean)", + "position": "parameter:loop", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.Attachment.Equals(LibreMetaverse.Avatar.Attachment)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.Attachment.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "position": "parameter:isTrial", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.AgentProfileAvailable", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.DisplayNamesAvailable", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.GetDisplayNamesAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAgentProfileAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarSitResponseEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "position": "parameter:autoPilot", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarSitResponseEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "position": "parameter:forceMouselook", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Avatar,System.UInt16,System.Boolean)", + "position": "parameter:isNew", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BannedAgentsEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.DateTime})", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(LibreMetaverse.BinBVHAnimationReader)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(LibreMetaverse.binBVHJoint[],LibreMetaverse.binBVHJoint[])", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBit(System.Boolean)", + "position": "parameter:bit", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFixed(System.Single,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:isSigned", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackFixed(System.Boolean,System.Int32,System.Int32)", + "position": "parameter:signed", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.MoveNext", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Contains(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.ContainsKey(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Remove(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Remove(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.TryGetValue(\u00600,\u00601@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.Disconnect(System.Boolean)", + "position": "parameter:immediate", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatSessionMember.Equals(LibreMetaverse.ChatSessionMember)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatSessionMember.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:inverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:alphaInverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:inverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.Equals(LibreMetaverse.Color4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:inverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:alphaInverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:inverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.GetBytes(System.Boolean)", + "position": "parameter:inverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:inverted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.op_Equality(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.op_Inequality(LibreMetaverse.Color4,LibreMetaverse.Color4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ContainsKey(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ContainsKey(\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Remove(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Remove(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Remove(\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.TryGetValue(\u00600,\u00602@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.TryGetValue(\u00601,\u00602@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:hasRange", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetLegacyEnvironmentAsync(LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.AddAllowedGroup(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.AddAllowedUser(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.AddEstateManager(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.BanUser(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RemoveAllowedGroup(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RemoveAllowedUser(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RemoveEstateManager(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionDebug(System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:disableCollisions", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionDebug(System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:disablePhysics", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionDebug(System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:disableScripts", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:allowDamage", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:allowLandResell", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:allowParcelJoinDivide", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:blockFly", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:blockFlyOver", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:blockParcelSearch", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:blockTerraform", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:restrictPushing", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:allowDamage", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:allowLandResell", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:allowParcelJoinDivide", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:blockFly", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:blockTerraform", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:restrictPushing", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionRestartScheduleAsync(LibreMetaverse.RegionRestartSchedule,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "parameter:FixedSun", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "parameter:UseEstateSun", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SimWideReturn(LibreMetaverse.UUID,LibreMetaverse.EstateTools.EstateReturnFlags,System.Boolean)", + "position": "parameter:EstateWide", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.UnbanUser(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:allEstates", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:condition", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:filter", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:filter", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Add(\u00600,\u00601,System.Double)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Add(\u00600,\u00601,System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.AddOrUpdate(\u00600,\u00601,System.Double)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.AddOrUpdate(\u00600,\u00601,System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Contains(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Remove(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.TryGetValue(\u00600,\u00601@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601,System.Double)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601,System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.TryParseTwoNames(System.String,System.String@,System.String@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.FolderUpdatedEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ForceSelectObjectsReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},System.Boolean)", + "position": "parameter:resetList", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendshipResponseEventArgs.#ctor(LibreMetaverse.UUID,System.String,System.Boolean)", + "position": "parameter:accepted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridLayer.ContainsRegion(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "position": "parameter:returnNonExistent", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridRegion.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Group.Equals(LibreMetaverse.Group)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Group.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupChatJoinedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupCreatedReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.String)", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.SetGroupAcceptNotices(LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "position": "parameter:acceptNotices", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.SetGroupAcceptNotices(LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "position": "parameter:listInProfile", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupOperationEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.Stop(System.Boolean)", + "position": "parameter:immediate", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertBoolArray(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Boolean[])", + "position": "parameter:values", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ColladaLoader.Load(System.String,System.Boolean)", + "position": "parameter:loadImages", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.IncomingPacketIDCollection.TryEnqueue(System.UInt32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.ResetOnSimAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.SetModeOnSimAsync(LibreMetaverse.Simulator,LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.Contains(LibreMetaverse.InventoryBase)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.Contains(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.TryGetNodeFor(LibreMetaverse.UUID,LibreMetaverse.InventoryNode@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.TryGetValue(LibreMetaverse.UUID,LibreMetaverse.InventoryBase@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.TryGetValue\u0060\u00601(LibreMetaverse.UUID,\u0060\u00600@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:simulate", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyLibraryCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:copySubfolders", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyLibraryCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CreateInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:createLink", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CreateInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryChildrenAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.EmptyTrashAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCOFAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:recursive", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:useInventoryCap", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:recursive", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:useInventoryCap", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchOrphansAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:recursive", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PurgeDescendentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryChildrenAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryLinksAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveCategoryAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.SlamFolderAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateItemAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryBase.Equals(LibreMetaverse.InventoryBase)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryBase.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.Equals(LibreMetaverse.InventoryBase)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.Equals(LibreMetaverse.InventoryFolder)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.Equals(LibreMetaverse.InventoryBase)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.Equals(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.IsLink", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyScriptToTask(System.UInt32,LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.Simulator)", + "position": "parameter:enableScript", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:confirmCost", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "parameter:callback", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:fetchFolders", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:fetchItems", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:followLinks", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:doEffect", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveItem(LibreMetaverse.UUID,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:doEffect", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.LocalFind(LibreMetaverse.UUID,System.String[],System.Int32,System.Boolean)", + "position": "parameter:firstOnly", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:fetchFolders", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:fetchItems", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:fetchFolders", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:fetchItems", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderUpdateAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:fetchFolders", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderUpdateAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:fetchItems", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestRezFromInventory(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.InventoryItem,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:rezSelected", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestSetScriptRunning(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:running", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:mono", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:mono", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:running", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UpdateTaskInventory(System.UInt32,LibreMetaverse.InventoryItem,LibreMetaverse.Simulator,System.Boolean)", + "position": "parameter:only_mod_meta", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryNodeDictionary.Contains(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryObjectOfferedEventArgs.#ctor(LibreMetaverse.InstantMessage,LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID)", + "position": "parameter:fromTask", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoadUrlEventArgs.#ctor(System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.String,System.String)", + "position": "parameter:ownerIsGroup", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.ShutdownAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.AddFollow(LibreMetaverse.LslTools.SymbolSet)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.IsNullable", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.IsTerminal", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.Matches(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CatTest.Test(System.Char)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Charset.GetEncoding(System.String,System.Boolean@,LibreMetaverse.LslTools.ErrorHandler)", + "position": "parameter:toupper", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.Eof", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.#ctor(System.Boolean)", + "position": "parameter:ee", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:lx", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.NonWhite(System.String,System.Int32@,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.White(System.String,System.Int32@,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer._Enumerator.MoveNext", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Literal.CouldStart(LibreMetaverse.LslTools.CSymbol)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.OListEnumerator.MoveNext", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Accessor(LibreMetaverse.LslTools.CSymbol[])", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Lookback(LibreMetaverse.LslTools.Production,LibreMetaverse.LslTools.ParseState)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.SameAs(LibreMetaverse.LslTools.ParseState)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserAction.IsAction", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserEntry.IsReduce", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserReduce.IsReduce", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ProdItem.IsReducingAction", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.CouldBeEmpty(System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.Char)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.IsAction", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.IsCSymbol", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.IsTerminal", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Matches(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Pass(LibreMetaverse.LslTools.YyParser,System.Int32,LibreMetaverse.LslTools.ParserEntry@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolSet.CheckIn(LibreMetaverse.LslTools.CSymbol)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Contains(LibreMetaverse.LslTools.CSymbol)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolType.#ctor(LibreMetaverse.LslTools.SymbolsGen,System.String,System.Boolean)", + "position": "parameter:defined", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.Find(LibreMetaverse.LslTools.CSymbol)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.IsTerminal", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.Matches(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.Pass(LibreMetaverse.LslTools.YyParser,System.Int32,LibreMetaverse.LslTools.ParserEntry@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "position": "parameter:reject", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "position": "parameter:reject", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.IsMarketplaceFolder(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.ActivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeactivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeleteListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.TryGetByFolder(LibreMetaverse.UUID,LibreMetaverse.Marketplace.MarketplaceListing@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.TryGetById(System.Int32,LibreMetaverse.Marketplace.MarketplaceListing@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Decompose(LibreMetaverse.Vector3@,LibreMetaverse.Quaternion@,LibreMetaverse.Vector3@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Equals(LibreMetaverse.Matrix4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.op_Equality(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.op_Inequality(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MoneyBalanceReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32,System.Int32,System.String,LibreMetaverse.TransactionInfo)", + "position": "parameter:transactionSuccess", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Contains(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.ContainsKey(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.ContainsValue(\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Remove(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Remove(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.TryGetValue(\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.Equals(LibreMetaverse.NameValue)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:setDefault", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:setDefault", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:setDefault", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:setDefault", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:setDefault", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:setDefault", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DisconnectSim(LibreMetaverse.Simulator,System.Boolean)", + "position": "parameter:sendCloseCircuit", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Login(LibreMetaverse.LoginResponseData)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "parameter:loginSuccess", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "parameter:redirect", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "position": "parameter:loginSuccess", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "position": "parameter:redirect", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "position": "parameter:isAsync", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AddTree(LibreMetaverse.Simulator,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.Tree,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:newTree", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ApplyMaterialAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClearMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.GetPrimitive(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:createIfMissing", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectPropertiesFamily(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:reliable", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32,System.Boolean)", + "position": "parameter:automaticDeselect", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[],System.Boolean)", + "position": "parameter:automaticDeselect", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SendMaterialUpdatesAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.GLTFMaterialUpdate},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:castsShadow", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:phantom", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:physical", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:temporary", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:castsShadow", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:phantom", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:physical", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:temporary", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPermissions(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.PermissionWho,LibreMetaverse.PermissionMask,System.Boolean)", + "position": "parameter:set", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:childOnly", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion,System.Boolean)", + "position": "parameter:childOnly", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetScale(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean,System.Boolean)", + "position": "parameter:childOnly", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetScale(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean,System.Boolean)", + "position": "parameter:uniform", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectMediaEventArgs.#ctor(System.Boolean,System.String,LibreMetaverse.MediaEntry[])", + "position": "parameter:success", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.ContainsKey(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.ContainsValue(\u00601)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Remove(\u00600)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.TryGetValue(\u00600,\u00601@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketEventDictionary.RegisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "position": "parameter:isAsync", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Parcel.Update(LibreMetaverse.GridClient,LibreMetaverse.Simulator,System.Boolean)", + "position": "parameter:wantReply", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:forGroup", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:removeContribution", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.EjectUser(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:ban", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.FreezeUser(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:freeze", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.GetParcelResourcesAsync(LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:getDetails", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.GetParcelResourcesAsync(LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Boolean,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:refresh", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "parameter:snapSelection", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelPropertiesEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Parcel,LibreMetaverse.ParcelResult,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:snapSelection", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.Equals(LibreMetaverse.Permissions)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.HasPermissions(LibreMetaverse.PermissionMask,LibreMetaverse.PermissionMask)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.op_Equality(LibreMetaverse.Permissions,LibreMetaverse.Permissions)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.op_Inequality(LibreMetaverse.Permissions,LibreMetaverse.Permissions)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,System.UInt16,System.Boolean,System.Boolean)", + "position": "parameter:isAttachment", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,System.UInt16,System.Boolean,System.Boolean)", + "position": "parameter:isNew", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:calcVertexNormals", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:createFaces", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.Copy(System.Boolean)", + "position": "parameter:needFaces", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.ToRows(System.Boolean)", + "position": "parameter:mirror", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "position": "parameter:viewerMode", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:invert", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:mirror", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:viewerMode", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Collections.Generic.List{System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord}},LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:invert", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Collections.Generic.List{System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord}},LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:mirror", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Collections.Generic.List{System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord}},LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:viewerMode", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:viewerMode", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.SculptMeshFromFile(System.String,LibreMetaverse.Imaging.ITextureCodec,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "position": "parameter:viewerMode", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.Equals(LibreMetaverse.Primitive)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.Equals(LibreMetaverse.Primitive.ParticleSystem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.HasBlendFunc", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.HasGlow", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.IsLegacyCompatible", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.Equals(LibreMetaverse.Primitive.TextureAnimation)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.op_Equality(LibreMetaverse.Primitive,LibreMetaverse.Primitive)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.op_Inequality(LibreMetaverse.Primitive,LibreMetaverse.Primitive)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:normalized", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ApproxEquals(LibreMetaverse.Quaternion,System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Equals(LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:normalized", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.TryParse(System.String,LibreMetaverse.Quaternion@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.op_Equality(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.op_Inequality(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.#ctor(System.Guid,LibreMetaverse.RLV.RlvAttachmentPoint,System.Boolean)", + "position": "parameter:replaceExistingAttachments", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.#ctor(LibreMetaverse.RLV.RlvRestriction,System.Boolean,System.Boolean)", + "position": "parameter:isDeleted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.#ctor(LibreMetaverse.RLV.RlvRestriction,System.Boolean,System.Boolean)", + "position": "parameter:isNew", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.IsSittingAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:limitToOneResult", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryBuildPathToFolder(System.Guid,System.String@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryGetFolderFromPath(System.String,System.Boolean,LibreMetaverse.RLV.RlvSharedFolder@)", + "position": "parameter:skipPrivateFolders", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryGetFolderFromPath(System.String,System.Boolean,LibreMetaverse.RLV.RlvSharedFolder@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.IsBlacklisted(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.IsSittingAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSharedFolderAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCommon.TryGetAttachmentPointFromItemName(System.String,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint}@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:isLink", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAllowIdle", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAlwaysRun", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(LibreMetaverse.RLV.RlvInventoryItem,System.Boolean)", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(LibreMetaverse.RLV.RlvInventoryItem,System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChat(System.Int32,System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChatNormal", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChatShout", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChatWhisper", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDefaultWear", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(LibreMetaverse.RLV.RlvInventoryItem)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanEdit(LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation,System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanEmote", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanFly", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanInteract", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanJump", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveChat(System.String,System.Guid)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanRez", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendChat", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendGesture", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSetDebug", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSetEnv", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSetGroup", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShare(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowHoverText(LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation,System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowInv", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowLoc", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowMiniMap", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNameTags(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNames(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNearby", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowWorldMap", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSit", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSitTp(System.Single@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanStandTp", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanStartIM(System.Guid)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTPLure(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTempRun", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLm", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLoc", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLocal(System.Single@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpRequest(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanUnsit", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanViewNote", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanViewScript", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanViewTexture", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptPermissions", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTp(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTpRequest(System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoDenyPermissions", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsPermissive", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetMaxFarTouchDistance(System.Single@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirChatChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirEmoteChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.TryGetLockedFolder(System.Guid,LibreMetaverse.RLV.LockedFolderPublic@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.#ctor(LibreMetaverse.RLV.IRlvQueryCallbacks,LibreMetaverse.RLV.IRlvActionCallbacks,System.Boolean)", + "position": "parameter:enabled", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessInstantMessageAsync(System.String,System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemAttachedAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemUnwornAsync(System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemWornAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:isShared", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:isLink", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.FacetedMesh.TryDecodeFromAsset(LibreMetaverse.Primitive,LibreMetaverse.Assets.AssetMesh,LibreMetaverse.Rendering.DetailLevel,LibreMetaverse.Rendering.FacetedMesh@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Equals(LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.op_Equality(LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph,LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.op_Inequality(LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph,LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.Equals(LibreMetaverse.Rendering.Vertex)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.op_Equality(LibreMetaverse.Rendering.Vertex,LibreMetaverse.Rendering.Vertex)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.op_Inequality(LibreMetaverse.Rendering.Vertex,LibreMetaverse.Rendering.Vertex)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.Interval(System.TimeSpan,System.Action,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:immediately", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:immediately", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptControlEventArgs.#ctor(LibreMetaverse.ScriptControlChange,System.Boolean,System.Boolean)", + "position": "parameter:pass", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptControlEventArgs.#ctor(LibreMetaverse.ScriptControlChange,System.Boolean,System.Boolean)", + "position": "parameter:take", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptRunningReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "position": "parameter:isMono", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptRunningReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "position": "parameter:isRunning", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimDisconnectedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.NetworkManager.DisconnectType,System.Boolean)", + "position": "parameter:wasConnected", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Connect(System.Boolean)", + "position": "parameter:moveToSim", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Connect(System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.ConnectAsync(System.Boolean)", + "position": "parameter:moveToSim", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.ConnectAsync(System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Disconnect(System.Boolean)", + "position": "parameter:sendCloseCircuit", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.IsEventQueueRunning(System.Boolean)", + "position": "parameter:blockUntilRunning", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.IsEventQueueRunning(System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.IsParcelMapFull", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SendPacketData(System.Byte[],System.Int32,LibreMetaverse.Packets.PacketType,System.Boolean)", + "position": "parameter:doZerocode", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SetSeedCaps(System.Uri,System.Boolean)", + "position": "parameter:changedSim", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.TerrainHeightAtPoint(System.Int32,System.Int32,System.Single@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.UseCircuitCode(System.Boolean)", + "position": "parameter:waitForAck", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.UseCircuitCodeAsync(System.Boolean)", + "position": "parameter:waitForAck", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.UseCircuitCodeAsync(System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.op_Equality(LibreMetaverse.Simulator,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.op_Inequality(LibreMetaverse.Simulator,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.Has(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.SkeletalBoneInfo.#ctor(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:hasPositionDeformation", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetObjectImUrl(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.String)", + "position": "parameter:groupOwned", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromBoolean(System.Boolean)", + "position": "parameter:value", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Boolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Boolean)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Contains(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Contains(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Remove(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.#ctor(System.Boolean)", + "position": "parameter:value", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Contains(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ContainsKey(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.TryGetValue(System.String,LibreMetaverse.StructuredData.OSD@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindByte(System.IO.Stream,System.Byte)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindString(System.IO.Stream,System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeJsonString(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "parameter:preserveDefaults", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinary(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "parameter:prependHeader", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinaryStream(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "parameter:prependHeader", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDProtobuf(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "parameter:prependHeader", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsBoolean", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:largeRegion", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:largeRegion", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatchHeader(LibreMetaverse.BitPack,System.Boolean)", + "position": "parameter:largeRegion", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainManager.SetTerrainMaterialOverridesAsync(LibreMetaverse.Assets.AssetMaterial[],System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.IUpgradeableLock.Upgrade", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock.Upgrade", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock.Upgrade", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne(System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne(System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitUpgradeableLock(System.Boolean)", + "position": "parameter:upgraded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UpgradeToWriteLock(System.Boolean@)", + "position": "parameter:upgraded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.#ctor(System.Boolean)", + "position": "parameter:initialState", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne(System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne(System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.#ctor(System.Boolean)", + "position": "parameter:initialState", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne(System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne(System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitUpgradeableLock(System.Boolean)", + "position": "parameter:upgraded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UpgradeToWriteLock(System.Boolean@)", + "position": "parameter:upgraded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitUpgradeableLock(System.Boolean)", + "position": "parameter:upgraded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UpgradeToWriteLock(System.Boolean@)", + "position": "parameter:upgraded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32,System.Boolean@)", + "position": "parameter:dripSucceeded", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32,System.Boolean@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.Equals(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.TryParse(System.String,LibreMetaverse.UUID@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.op_Equality(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.op_Inequality(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Shoot(LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Shoot(LibreMetaverse.GridClient,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.EnumTryParse\u0060\u00601(System.String,\u0060\u00600@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.HexStringToBytes(System.String,System.Boolean)", + "position": "parameter:handleDirty", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IsFinite(System.Double)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IsFinite(System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseDouble(System.String,System.Double@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseHex(System.String,System.UInt32@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseSingle(System.String,System.Single@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ApproxEquals(LibreMetaverse.Vector2,System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Equals(LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.IsFinite", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.TryParse(System.String,LibreMetaverse.Vector2@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.op_Equality(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.op_Inequality(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ApproxEquals(LibreMetaverse.Vector3,System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Equals(LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.IsFinite", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.TryParse(System.String,LibreMetaverse.Vector3@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.op_Equality(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.op_Inequality(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ApproxEquals(LibreMetaverse.Vector3d,System.Double)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Equals(LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.IsFinite", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.TryParse(System.String,LibreMetaverse.Vector3d@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.op_Equality(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.op_Inequality(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ApproxEquals(LibreMetaverse.Vector4,System.Single)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Equals(LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.IsFinite", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.TryParse(System.String,LibreMetaverse.Vector4@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.op_Equality(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.op_Inequality(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualAlphaParam.#ctor(System.Single,System.String,System.Boolean,System.Boolean)", + "position": "parameter:multiplyBlend", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualAlphaParam.#ctor(System.Single,System.String,System.Boolean,System.Boolean)", + "position": "parameter:skipIfZero", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:isBumpAttribute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:EnableBuddiesAndPresence", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.#ctor(System.Boolean,System.Single,System.Int32,System.Int32)", + "position": "parameter:MicIsActive", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectToDaemon(System.String,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalMic(System.String,System.Boolean)", + "position": "parameter:mute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalSpeaker(System.String,System.Boolean)", + "position": "parameter:mute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "position": "parameter:IsChannel", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:IsLocallyMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:IsModeratorMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:IsSpeaking", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:isMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:isSpeaking", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean)", + "position": "parameter:isChannel", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean)", + "position": "parameter:isIncoming", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:JoinAudio", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:JoinText", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.#ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:HasAudio", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.#ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:HasText", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.#ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:HasVideo", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.#ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:Terminated", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStart(System.String,System.Boolean)", + "position": "parameter:Loop", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "position": "parameter:IsChannel", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:IsFocused", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:IsMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:TransmitEnabled", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectToDaemon", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectToDaemon(System.String,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.IsDaemonRunning", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:isLocallyMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:isModeratorMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:isSpeaking", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:isLocallyMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:isModeratorMuted", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:isSpeaking", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestParcelVoiceInfo", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestProvisionAccount", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderAudioStart(System.String,System.Boolean)", + "position": "parameter:loop", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:isChannel", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:isChannel", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.StartDaemon", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessJsonElement(System.Text.Json.JsonElement,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:sendString", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessOSDMap(LibreMetaverse.StructuredData.OSDMap,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:sendString", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.TryGetPeerForSsrc(System.UInt32,LibreMetaverse.UUID@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.TryGetSsrc(LibreMetaverse.UUID,System.UInt32@)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceException.#ctor(System.String,System.Boolean)", + "position": "parameter:isDefinitiveRejection", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptIncomingP2PCallAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptP2PCallAsync(LibreMetaverse.UUID,System.String,System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.ConnectPrimaryRegionAsync", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetP2PCallInfo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.IsInGroupVoice(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.IsInP2PCall(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.IsVoiceAllowedAt(LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.JoinConferenceVoiceAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.JoinGroupVoiceAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayRawFile(System.String,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:loop", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayWavAsMic(System.String,System.Boolean)", + "position": "parameter:loop", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.RequestParcelVoiceInfoAsync", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SendDataChannelMessage(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetGroupVoicePeerGain(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetGroupVoicePeerMute(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:mute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetGroupVoicePeerMute(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetP2PCallGain(LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetP2PCallMute(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:mute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetP2PCallMute(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetPeerMute(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:mute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StartP2PCallAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.RequestProvisionAsync", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendAvatarArray(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendAvatarMap(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendGainMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Int32})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendJoin(System.Boolean)", + "position": "parameter:primary", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendJoin(System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendLeave", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendMuteMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean})", + "position": "parameter:muteMap", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendMuteMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean})", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendPosition(LibreMetaverse.Vector3d,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendPosition(LibreMetaverse.Vector3d,LibreMetaverse.Quaternion,LibreMetaverse.Vector3d,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SetPeerGain(LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SetPeerMute(LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:mute", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SetPeerMute(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.TrySendDataChannelString(System.String)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.VolumeMorphInfo.#ctor(System.String,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:hasPosition", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.VolumeMorphInfo.#ctor(System.String,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:hasScale", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.Equals(LibreMetaverse.binBVHJoint)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.Equals(LibreMetaverse.binBVHJointKey,LibreMetaverse.binBVHJointKey)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.Equals(LibreMetaverse.binBVHJointKey[],LibreMetaverse.binBVHJointKey[])", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.Equals(System.Object)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.op_Equality(LibreMetaverse.binBVHJoint,LibreMetaverse.binBVHJoint)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.op_Inequality(LibreMetaverse.binBVHJoint,LibreMetaverse.binBVHJoint)", + "position": "return_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AISResponseMeta.HasAnyData", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentAccessEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.IsDefaultDisplayName", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AlwaysRun", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AtNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AtPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AutoResetControls", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Away", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FastAt", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FastLeft", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FastUp", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.FinishAnim", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Fly", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LButtonDown", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LButtonUp", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LeftNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.LeftPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.MLButtonDown", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.MLButtonUp", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Mouselook", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeAtNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeAtPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeLeftNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeLeftPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeUpNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.NudgeUpPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.PitchNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.PitchPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.SitOnGround", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.StandUp", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.Stop", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.TurnLeft", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.TurnRight", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpdateEnabled", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.YawNeg", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.YawPos", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.IsFinished", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AppearanceManager.ManagerBusy", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AppearanceSetEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AssetCache.AutoPruneEnabled", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.DoubleSided", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.OverrideAlphaMode", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.OverrideDoubleSided", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Normalized", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.DoubleSided", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.GltfTextureTransform.IsDefault", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.IsAvailable", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.MicMute", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.PlaybackActive", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.RecordingActive", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.AllowPublish", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.Identified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.MaturePublish", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.Online", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.AvatarProperties.Transacted", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.IsTrial", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.Autopilot", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarSitResponseEventArgs.ForceMouselook", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarUpdateEventArgs.IsNew", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.BannedAgentsEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.CacheDictionary\u00602.IsReadOnly", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Caps.IsEventQueueRunning", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FolderUpdatedEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ForceSelectObjectsReplyEventArgs.ResetList", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.CanModifyMyObjects", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.CanModifyTheirObjects", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.CanSeeMeOnMap", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.CanSeeMeOnline", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.CanSeeThemOnMap", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.CanSeeThemOnline", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.IsOnline", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendshipResponseEventArgs.Accepted", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupChatJoinedEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupCreatedReplyEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.Accept", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupManager.CanJoinMoreGroups", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupOperationEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Http.EventQueueClient.Running", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.setSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.endSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.Values", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.modifierSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.stageSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.depth_clearSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.stencil_clearSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.valueSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.valueSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.stageSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.modifierSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.mipmap_generate", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.mipmap_generateSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common.precisionSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.modifierSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.sourceSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.sourceSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.operatorSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.scaleSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.operatorSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.scaleSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.operatorSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.modifierSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.heightSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.widthSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.input_setSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic.Value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow.Value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic.Value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow.Value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled.Value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate.Value", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.spline.closed", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryAISClient.IsAvailable", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryItem.GroupOwned", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryLandmark.LandmarkVisited", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CanUploadLargeTextures", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CopyItemsResult.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.FolderUpdateResult.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryNode.NeedsUpdate", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.Accept", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryObjectOfferedEventArgs.FromTask", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoadUrlEventArgs.OwnerIsGroup", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.FirstLogin", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.ParseResult.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Serialiser.Encode", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.MediaEntry.EnableAlternativeImage", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.IsDefault", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.Connected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ObjectMediaEventArgs.Success", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AbortXferPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGroupPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AddCircuitCodePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDataUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDropGroupPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentPausePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentResumePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AssetUploadCompletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AssetUploadRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AtomicPassObjectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AttachedSoundGainChangePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AttachedSoundPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CameraConstraintPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CancelAuctionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromSimulatorPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatPassPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CheckParcelAuctionsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CheckParcelSalesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentAlivePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentDyingPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUnknownPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CloseCircuitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompleteAgentMovementPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompleteAuctionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompletePingCheckPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmAuctionStartPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmXferPacketPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateTrustedCircuitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataServerLogoutPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezAckPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DenyTrustedCircuitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DerezContainerPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DisableSimulatorPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EconomyDataPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EconomyDataRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EdgeDataPacketPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EmailMessageReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EmailMessageRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EnableSimulatorPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ErrorPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateCovenantReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateCovenantRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FeatureDisabledPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceScriptControlReleasePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FormFriendshipPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GetScriptRunningPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodKickUserPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupDataUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitleUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.HealthMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageNotInDatabasePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InternalScriptMailPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryAssetResponsePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserAckPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KillChildAgentsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KillObjectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LoadURLPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogDwellTimePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogTextMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MeanCollisionAlertPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferBackendPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NeighborListPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NetTestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfflineNotificationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OnlineNotificationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OpenCircuitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.Packet.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PacketAckPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAuctionsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelOverlayPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelRenamePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSalesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PreloadSoundPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RedoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandleRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceResponsePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveParcelPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ReplyTaskInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ReportAutosaveCrashPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestInventoryAssetPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestPayPricePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestRegionInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestTrustedCircuitPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestXferPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcChannelReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcChannelRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptControlChangePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDataReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDataRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptMailRegistrationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptRunningReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendPostcardPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetAlwaysRunPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetCPURatioPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorMapUpdatePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorSetMapPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SoundTriggerPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartLurePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartPingCheckPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StateSavePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SubscribeLoadPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemKickUserPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TallyVotesPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportCancelPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFinishPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocalPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLureRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportStartPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferAbortPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryAckPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferPacketPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDNameReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDNameRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoLandPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UnsubscribeLoadPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateParcelPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateSimulatorPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UseCachedMuteListPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UseCircuitCodePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoRequestPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportInternalPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOffPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOnPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerFrozenMessagePacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.UsesBufferPooling", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.SnapSelection", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParticleSimulator.IsActive", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimEventArgs.IsAttachment", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimEventArgs.IsNew", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.HasHollow", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.HasProfileCut", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.IsAnimatedObject", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.SculptData.Invert", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.SculptData.Mirror", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Fullbright", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.MediaFlags", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Valid", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.AttachmentRequest.ReplaceExistingAttachments", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.IsLocked", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.IsDeleted", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs.IsNew", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.CanAttach", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.CanDetach", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.IsLocked", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.IsLink", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvRestriction.IsException", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvService.EnableInstantMessageProcessing", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvService.Enabled", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.RegionRestartSchedule.IsDaily", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.VisibleInFirstPerson", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.Joint.connected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.reposition", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.HasDetailTexCoords", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.HasWeights", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.versionSpecified", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptControlEventArgs.Pass", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptControlEventArgs.Take", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptRunningReplyEventArgs.IsMono", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptRunningReplyEventArgs.IsRunning", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.SimConnectingEventArgs.Cancel", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.SimDisconnectedEventArgs.WasConnected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.Connected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.HandshakeComplete", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.IsApplication", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.IsLocation", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDArray.IsReadOnly", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDMap.IsReadOnly", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.TerrainPatch.Header.LargeRegion", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Threading.Disposers.IAdvancedDisposable.WasDisposed", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Threading.ManagedAutoResetEvent.IsSet", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Threading.ManagedAutoResetEvent.WasDisposed", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Threading.ManagedManualResetEvent.IsSet", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Threading.ManagedManualResetEvent.WasDisposed", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Threading.ManagedSemaphore.WasDisposed", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.UDPBase.IsRunning", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.TCPPipe.Connected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonIsConnected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonIsRunning", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.MicMute", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.SpkrMute", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.TestMode", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.IsMuted", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.IsSpeaking", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceSession.IsSpatial", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceException.IsDefinitiveRejection", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.Connected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.IsTransitioning", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.VoiceAllowedHere", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.Connected", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.IsPrimary", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.JoinedPrimary", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.Left", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.ModeratorMuted", + "position": "property_type", + "signature": "System.Boolean" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.VoiceActive", + "position": "property_type", + "signature": "System.Boolean" + } + ] + }, + { + "doc_id": "T:System.Byte", + "signature": "System.Byte", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnAudioSourceEncodedSample", + "position": "event_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.ATTACHMENT_ADD", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.BakeIndexToTextureIndex", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.MyVisualParameters", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetDownload.outOfOrderPackets", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Asset.AssetData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetGesture.TriggerKey", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ScriptState", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.AppearanceVersion", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Attachment.AttachmentPoint", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.VisualParameters", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.BitPack.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.ClassifiedFlags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridRegion.Agents", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridRegion.WaterHeight", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Helpers.MSG_APPENDED_ACKS", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Helpers.MSG_RELIABLE", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Helpers.MSG_RESENT", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Helpers.MSG_ZEROCODED", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.CompletionTcs", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Alpha", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Blue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Bump", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Green", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Red", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.TextureData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Asset", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.InstantMessage.BinaryBucket", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.BinaryBucket", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Bitmap", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.ExtraParamData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.ObjectMovementUpdate.State", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.TypeData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.TextureIndex", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.HostName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.TextureIndex", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FirstName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.GroupName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.GroupTitle", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.LastName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.GroupName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.WearableType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ChannelVersion", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.TextureEntry", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ParamValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.TextureIndex", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.Throttles", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.State", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.WearableType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ExtraParams", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.AssetData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.TypeData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.AppearanceVersion", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.AttachmentPoint", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.TextureEntry", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ParamValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupTitle", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.LanguagesText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.SkillsText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.WantToText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.LanguagesText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.SkillsText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.WantToText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.Notes", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.Notes", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FirstName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.LastName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.GodLevel", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.PickName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.AboutText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.BornOn", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.CharterMember", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FLAboutText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ProfileURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.GodLevel", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.AboutText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FLAboutText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ProfileURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.HostName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.TextureIndex", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Audible", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ChatType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.SourceType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.SourceType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.AgentLegacyAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.AgentMaxAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.AgentTextures", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.GodLevel", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Throttles", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.InventoryHost", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.NVPairs", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ParamValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ClassifiedFlags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ParcelName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ClassifiedFlags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.X", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.Y", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.Z", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.PingID", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.NewName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.Charter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.Charter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.WearableType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.Digest", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.SeedCapability", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.Destination", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.PacketCount", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.PacketNumber", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ClassifiedFlags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.Date", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.GroupName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FirstName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Group", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.LastName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.Direction", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.LayerData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.LayerType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromAddress", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.MailFilter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Subject", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromAddress", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.Subject", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.System", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Token", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.EstateName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.Method", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.Parameter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Category", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Creator", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Date", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ErrorMessage", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.Index", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.Method", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.Parameter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.Reason", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.Method", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.Parameter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.GodLevel", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.StartDate", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LastTaxDate", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.StartDate", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.TaxDate", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Item", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Time", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.User", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.StartDate", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.EndDateTime", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ProposalText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.StartDateTime", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.TerseDateID", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.VoteCast", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.GroupTitle", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.OnlineStatus", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.Title", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.BinaryBucket", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.Dialog", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromAgentName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.AssetType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.Subject", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Charter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.MemberTitle", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.VoteCast", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Title", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Title", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.UpdateType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.Title", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.EndDateTime", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ProposalText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.StartDateTime", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.TerseDateID", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.VoteResult", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.VoteType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.VoteCast", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Codec", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.BinaryBucket", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Dialog", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromAgentName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Offline", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.TextureEntry", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.SimFilename", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ViewerFilename", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.Body", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.From", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.Subject", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.Reason", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.OwnerName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.TaskName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.Filter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.Method", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.Parameter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.Selection", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ObjectName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LoadURLPacket.DataBlock.URL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.AvgAgentsInView", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.AvgViewerFPS", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FailureType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Access", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Agents", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.WaterHeight", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Action", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.BrushSize", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ItemDescription", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.AggregatePermInventory", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.AggregatePermNextOwner", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.AggregatePermInventory", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.AggregatePermNextOwner", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.NewName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.Filename", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.NVPair", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.BypassRaycast", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.Material", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PCode", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathRevolutions", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathScaleX", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathScaleY", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathShearX", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathShearY", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.RayEndIsIntersection", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.State", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.AttachmentPoint", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.PropertyID", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.Value", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ClickAction", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.PhysicsShapeType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.MediaURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.TextureEntry", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.Material", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Field", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Set", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.AggregatePermTextures", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.AggregatePermTexturesOwner", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.AggregatePerms", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.SitName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.TextureID", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.TouchName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathRevolutions", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathScaleX", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathScaleY", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathShearX", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathShearY", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ClickAction", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ExtraParams", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.JointType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Material", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.MediaURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.NameValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ObjectData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PCode", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PSBlock", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathRevolutions", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathScaleX", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathScaleY", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathShearX", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathShearY", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.State", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Text", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.TextColor", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.TextureAnim", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.TextureEntry", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.MediaAutoScale", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.MediaURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaDesc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaLoop", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Bitmap", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Category", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.LandingType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MediaAutoScale", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MediaURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MusicURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Status", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Category", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.LandingType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MediaAutoScale", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MediaURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.MusicURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.NewName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.OriginalName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.User", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.QueryText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Desc", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ColoName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ProductName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ProductSKU", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.OnDeath", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ProductName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ProductSKU", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.MaxAgents", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.AttachmentPoint", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.MuteName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.NVPair", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.Filename", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.CacheMissType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FilePath", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.Filename", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.TotalObjects", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.AttachmentPt", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.BypassRaycast", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.BypassRaycast", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.AttachmentPt", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ItemDescription", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.StringValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.StringValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.StringValue", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.Reply", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.Request", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ButtonLabel", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FirstName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.LastName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ObjectName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ButtonLabel", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.TargetIP", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ObjectName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ObjectOwner", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.SearchRegions", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ObjectName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.From", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Msg", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Subject", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.To", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.Ratio", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.HostName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.Status", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.HostName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.Status", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.X", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.Y", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ProposalText", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartLurePacket.InfoBlock.LureType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartLurePacket.InfoBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.PingID", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.Filename", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Digest", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Method", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.Parameter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ObjectName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ExtraParams", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.Reason", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SeedCapability", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.Message", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Params", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.Params", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.GroupName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FirstName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.LastName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.AttachmentPoint", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.Charter", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Category", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.MusicURL", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Status", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.SimAccess", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.SimName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Description", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Name", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.SaleType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.Key", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.DirectoryVisibility", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.DirectoryVisibility", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.EMail", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.AbuseRegionName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Category", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Details", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ReportType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Summary", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.VersionString", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.AbuseRegionName", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Category", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.CheckFlags", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Details", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ReportType", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Summary", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.VersionString", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Color", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Type", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.TypeData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.AgentsInView", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysCPU", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysGPU", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysOS", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.Bitmap", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.blueBytes", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.greenBytes", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.redBytes", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.State", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.profileCurve", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.AggregatePermTextures", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.AggregatePermTexturesOwner", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.AggregatePerms", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFuncDest", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BlendFuncSource", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstPartCount", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.LegacyDataBlockSize", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.MaxDataBlockSize", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartDataSize", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.SysDataSize", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ScratchPad", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.RotationOrder", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ParcelOverlay", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Transfer.AssetData", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.UDPPacketBuffer.Data", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.EmptyBytes", + "position": "field_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.InstantMessageDialog,LibreMetaverse.InstantMessageOnline,LibreMetaverse.Vector3,LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:binaryBucket", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:jpegImageData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentThrottle.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentThrottle.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.GetCachedAssetBytes(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.GetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCache(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCacheAsync(LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken)", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytes(LibreMetaverse.UUID,System.Byte[]@)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUpload(LibreMetaverse.UUID@,LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadAsync(LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadBakedTextureAsync(System.Byte[],System.Threading.CancellationToken)", + "position": "parameter:textureData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadLargeTextureAsync(System.Byte[],System.Int32,System.Threading.CancellationToken)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetAnimation.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetBodypart.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetClothing.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetGesture.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetLandmark.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMesh.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMutable.#ctor(LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetNotecard.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetScriptText.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSettings.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.PcmToOgg(System.Byte[],System.Int32,System.Int32,System.Int32)", + "position": "parameter:pcmData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.PcmToOgg(System.Byte[],System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetTexture.#ctor(LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.Load(System.Byte[],System.Func{System.String,System.Byte[]})", + "position": "parameter:bufferLoader", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.Load(System.Byte[],System.Func{System.String,System.Byte[]})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGlb(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGltf(System.String,System.Func{System.String,System.Byte[]})", + "position": "parameter:bufferLoader", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.ToGlb", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.LoadObjects(System.Byte[],LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,System.Int64,System.Int64)", + "position": "parameter:objectData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ConvertOctalBytesToDecimal(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ReadEntry(System.String@,LibreMetaverse.Assets.TarArchiveReader.TarEntryType@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.ConvertDecimalToPaddedOctalBytes(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceEncodedSample(System.UInt32,System.Byte[])", + "position": "parameter:sample", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedEncodedSample(System.UInt32,System.Byte[])", + "position": "parameter:encoded", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmBytes(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:pcmBytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRtpPacket(System.UInt32,System.Byte[])", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "position": "parameter:appearanceVersion", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "position": "parameter:visualParams", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.#ctor(System.Byte[])", + "position": "parameter:animationdata", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.ReadBytesUntilNull(System.Byte[],System.Int32@)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readJoint(System.Byte[],System.Int32@)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readKeys(System.Byte[],System.Int32@,System.Int32,System.Single,System.Single)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackByte", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte)", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)", + "position": "parameter:a", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)", + "position": "parameter:b", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)", + "position": "parameter:g", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)", + "position": "parameter:r", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.GetBytes(System.Boolean)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.GetFloatBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToFloatBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.UploadTerrain(System.Byte[],System.String)", + "position": "parameter:fileData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.GenericStreamingMessageEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.GenericStreamingMethod,System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupNotice.SerializeAttachment", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.DecompressOSD(System.Byte[])", + "position": "parameter:meshBytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:saleType", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEGlowByte(System.Single)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEGlowFloat(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEOffsetFloat(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TERotationFloat(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZCompressOSD(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZDecompressOSD(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroDecode(System.Byte[],System.Int32,System.Byte[])", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroDecode(System.Byte[],System.Int32,System.Byte[])", + "position": "parameter:src", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroEncode(System.Byte[],System.Int32,System.Byte[])", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroEncode(System.Byte[],System.Int32,System.Byte[])", + "position": "parameter:src", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(LibreMetaverse.Http.DownloadRequest)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:payload", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ExportRaw", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.Create(System.Int32,System.Int32,System.Int32,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Targa.Encode(LibreMetaverse.Imaging.ManagedImage)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Interfaces.IByteBufferPool.LeaseBytes(System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Interfaces.IByteBufferPool.ReturnBytes(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UploadThumbnailAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:j2cImageData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketSentEventArgs.#ctor(System.Byte[],System.Int32,LibreMetaverse.Simulator)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.AcksToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.BuildHeader(System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.FromBytes(System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(System.Byte[],System.Int32@,System.Byte[])", + "position": "parameter:packetBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(System.Byte[],System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBinary(System.Byte[])", + "position": "parameter:binary", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBinary(LibreMetaverse.Packets.Packet)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:zeroBuffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytesMultiple", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.FlexibleData.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.FlexibleData.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.GetExtraParamsBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightData.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightData.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightImage.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightImage.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ObjectProperties.GetTextureIDBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathRevolutions(System.Single)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathScale(System.Single)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SculptData.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SculptData.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SetExtraParamsFromBytes(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.#ctor(System.Byte[],System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathRevolutions(System.Byte)", + "position": "parameter:pathRevolutions", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathScale(System.Byte)", + "position": "parameter:pathScale", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.Command(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateFacetedMeshMesh(LibreMetaverse.Primitive,System.Byte[])", + "position": "parameter:meshData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.GenerateFacetedMeshMesh(LibreMetaverse.Primitive,System.Byte[],LibreMetaverse.Rendering.DetailLevel)", + "position": "parameter:meshData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[])", + "position": "parameter:compressedMeshData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[],System.Collections.Generic.List{LibreMetaverse.Vector3}@)", + "position": "parameter:compressedMeshData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsSimpleMesh(LibreMetaverse.Primitive,System.Byte[])", + "position": "parameter:compressedMeshData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.UnpackMesh(System.Byte[])", + "position": "parameter:assetData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SendPacketData(System.Byte[],System.Int32,LibreMetaverse.Packets.PacketType,System.Boolean)", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.SetFeatures(System.Net.Http.HttpResponseMessage,System.Byte[],System.Exception)", + "position": "parameter:responseData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromBinary(System.Byte[])", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.Byte)", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Byte[]", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Byte)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Byte[])~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.Byte[])", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ConsumeBytes(System.IO.Stream,System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.Deserialize(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDBinary(System.Byte[])", + "position": "parameter:binaryData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDProtobuf(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.Byte[])", + "position": "parameter:xmlData", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindByte(System.IO.Stream,System.Byte)", + "position": "parameter:toFind", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.HostToNetworkIntBytes(System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.NetworkToHostDouble(System.Byte[])", + "position": "parameter:binaryNetEnd", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.NetworkToHostInt(System.Byte[])", + "position": "parameter:binaryNetEnd", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinary(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinary(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDProtobuf(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlBytes(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUri.AsBinary", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Byte[],System.Int32,System.Net.IPEndPoint,System.Int32)", + "position": "parameter:buffer", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint,System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.#ctor(System.Byte[],System.Int32)", + "position": "parameter:source", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:source", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte,System.Single,System.Single)", + "position": "parameter:val", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToDouble(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToFloat(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.Int32,System.String)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.String)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[],System.Int32)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt64(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.CopyBytes(System.Byte[])", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.CopyBytes(System.Byte[])", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytesBig(System.Double)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToByte(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.HexStringToBytes(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytesBig(System.Int32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.MD5(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.MD5(System.Byte[])", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ReadDoubleLittleEndian(System.Byte[],System.Int32)", + "position": "parameter:src", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ReadSingleLittleEndian(System.Byte[],System.Int32)", + "position": "parameter:src", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA1(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA1(System.Byte[])", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA256(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA256(System.Byte[])", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToBytes(System.String)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SwapWords(System.Byte)", + "position": "parameter:value", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SwapWords(System.Byte)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytesBig(System.UInt16,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:bytes", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32)", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytesBig(System.UInt32,System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteDoubleLittleEndian(System.Byte[],System.Int32,System.Double)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteSingleLittleEndian(System.Byte[],System.Int32,System.Single)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:byteArray", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.GetBytes", + "position": "return_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:dest", + "signature": "System.Byte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.SendData(System.Byte[])", + "position": "parameter:data", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.Data", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.AppearanceVersion", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.VisualParams", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.GenericStreamingMessageEventArgs.Data", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask.value", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.mipmap_maxlevel", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.mipmap_maxlevel", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.mipmap_maxlevel", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.mipmap_maxlevel", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.mipmap_maxlevel", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.mipmap_maxlevel", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.AlphaMaskCutoff", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.EnvironmentIntensity", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularExponent", + "position": "property_type", + "signature": "System.Byte" + }, + { + "owner_doc_id": "P:LibreMetaverse.PacketSentEventArgs.Data", + "position": "property_type", + "signature": "System.Byte" + } + ] + }, + { + "doc_id": "T:System.Char", + "signature": "System.Char", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.Sanitize(System.String,System.Char[],System.Char)", + "position": "parameter:invalidChars", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.Sanitize(System.String,System.Char[],System.Char)", + "position": "parameter:replacement", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CatTest.Test(System.Char)", + "position": "parameter:ch", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.Read(System.Char[],System.Int32,System.Int32)", + "position": "parameter:arr", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.PeekChar", + "position": "return_type", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddArc(System.Char,LibreMetaverse.LslTools.NfaNode)", + "position": "parameter:ch", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddTarget(System.Char,LibreMetaverse.LslTools.Dfa)", + "position": "parameter:ch", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddUArc(System.Char,LibreMetaverse.LslTools.NfaNode)", + "position": "parameter:ch", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.Char)", + "position": "parameter:ch", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.BufferCharactersEqual(System.IO.StringReader,System.Char[],System.Int32)", + "position": "parameter:buffer", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.EscapeCharacter(System.String,System.Char)", + "position": "parameter:c", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetStringDelimitedBy(System.IO.StringReader,System.Char)", + "position": "parameter:delimiter", + "signature": "System.Char" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.UnescapeCharacter(System.String,System.Char)", + "position": "parameter:c", + "signature": "System.Char" + } + ] + }, + { + "doc_id": "T:System.Collections.ArrayList", + "signature": "System.Collections.ArrayList", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.ToArrayList", + "position": "return_type", + "signature": "System.Collections.ArrayList" + } + ] + }, + { + "doc_id": "T:System.Collections.DictionaryEntry", + "signature": "System.Collections.DictionaryEntry", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.BeginInvoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry,System.AsyncCallback,System.Object)", + "position": "parameter:entry", + "signature": "System.Collections.DictionaryEntry" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.Invoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry)", + "position": "parameter:entry", + "signature": "System.Collections.DictionaryEntry" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.Dictionary\u00602", + "signature": "System.Collections.Generic.Dictionary\u003CTKey, TValue\u003E", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.GainMapReceived", + "position": "event_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.MuteMapReceived", + "position": "event_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.GainMapReceived", + "position": "event_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.MuteMapReceived", + "position": "event_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnGainMapReceived", + "position": "event_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnMuteMapReceived", + "position": "event_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.AlphaMasks", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.VisualAlphaParam, System.Single\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.Params", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.Textures", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.AvatarTextureIndex, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.Attachments", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.AttachmentPoint, LibreMetaverse.Messages.Linden.ObjectResourcesDetail[]\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.Agents", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryAvailable", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryUsed", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Resources", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.PremiumPackages", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProtocolManager.KeywordPositions", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProtocolManager.TypeSizes", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.FieldType, System.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.PrimCache", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.UInt32, LibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.SimulatorDataPools", + "position": "field_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.UInt64, LibreMetaverse.SimulatorDataPool\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Animate(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean},System.Boolean)", + "position": "parameter:animations", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.EvaluatePose(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose})", + "position": "parameter:pose", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Animesh.JointPose\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshPlayer.EvaluatePose", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Animesh.JointPose\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AnimeshSkinning.ComputeSkinningMatrices(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose},LibreMetaverse.Rendering.LindenSkeleton,LibreMetaverse.Rendering.MeshSkinData)", + "position": "parameter:pose", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Animesh.JointPose\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByInventoryItem", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.InventoryItem, LibreMetaverse.AttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByItemId", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.AttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentParamValues", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarClassifiedReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:classifieds", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarPickerReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:avatars", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarPicksReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:picks", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.BannedAgentsEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.DateTime})", + "position": "parameter:bannedAgents", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.DateTime\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CurrentGroupsEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.Group})", + "position": "parameter:groups", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Group\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendNamesEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:names", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupMembersReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.GroupMember})", + "position": "parameter:members", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupMember\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupNamesEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:groupNames", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupRolesDataReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.GroupRole})", + "position": "parameter:roles", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupRole\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupTitlesReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.GroupTitle})", + "position": "parameter:titles", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupTitle\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolders(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:foldersNewParents", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFoldersAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:foldersNewParents", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItems(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:itemsNewFolders", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemsAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:itemsNewFolders", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:items", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken,System.Action{System.Collections.Generic.List{LibreMetaverse.InventoryItem}})", + "position": "parameter:items", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromDictionaryString(System.Collections.Generic.Dictionary{System.String,System.String})", + "position": "parameter:dict", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromDictionaryUri(System.Collections.Generic.Dictionary{System.Uri,System.Uri})", + "position": "parameter:dict", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.Uri, System.Uri\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToDictionaryString(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToDictionaryUri(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.Uri, System.Uri\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.BuildBoneWorldMatrices(LibreMetaverse.Rendering.LindenSkeleton,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "parameter:boneTransforms", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.BuildBoneWorldMatrices(LibreMetaverse.Rendering.LindenSkeleton,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:boneTransforms", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:boneTransforms", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:result", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:boneTransforms", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:boneTransforms", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:result", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Matrix4x4\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeGroundAdjustment(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "parameter:boneTransforms", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.Tick(System.Single)", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.ComputeBoneTransforms(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.BoneTransform\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildJointDictionary", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Rendering.Joint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:drivenWeights", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Numerics.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSlappUrl(LibreMetaverse.SlappCommand,System.String,System.Collections.Generic.Dictionary{System.String,System.String})", + "position": "parameter:queryParams", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Stats.UtilizationStatistics.GetStatistics", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.Stats.UtilizationStatistics.Stat\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.#ctor(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:value", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.TopCollidersReplyEventArgs.#ctor(System.Int32,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.EstateTask})", + "position": "parameter:tasks", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.TopScriptsReplyEventArgs.#ctor(System.Int32,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.EstateTask})", + "position": "parameter:tasks", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUIDNameReplyEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:names", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.GetChannelMap", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendGainMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:gainMap", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendMuteMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean})", + "position": "parameter:muteMap", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Attributes", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarClassifiedReplyEventArgs.Classifieds", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarPickerReplyEventArgs.Avatars", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarPicksReplyEventArgs.Picks", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.BannedAgentsEventArgs.BannedAgents", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.DateTime\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CurrentGroupsEventArgs.Groups", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Group\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendNamesEventArgs.Names", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupMembersReplyEventArgs.Members", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupMember\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupNamesEventArgs.GroupNames", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupRolesDataReplyEventArgs.Roles", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupRole\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupTitlesReplyEventArgs.Titles", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.GroupTitle\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.Gestures", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.PremiumPackages", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.Object\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.QueryParameters", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CSystem.String, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.TopCollidersReplyEventArgs.Tasks", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.TopScriptsReplyEventArgs.Tasks", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, LibreMetaverse.EstateTask\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.UUIDNameReplyEventArgs.Names", + "position": "property_type", + "signature": "System.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.String\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.Dictionary\u00602.KeyCollection", + "signature": "System.Collections.Generic.Dictionary\u003CTKey, TValue\u003E.KeyCollection", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Caps.Capabilities", + "position": "return_type", + "signature": "System.Collections.Generic.Dictionary\u003CTKey, TValue\u003E.KeyCollection" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IAsyncEnumerable\u00601", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchClassifiedsAsync(System.String,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.DirectoryManager.ClassifiedQueryFlags,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.Classified\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchDirPlacesAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchEventsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,LibreMetaverse.DirectoryManager.EventCategories,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.EventsSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchGroupsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.GroupSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchLandAsync(LibreMetaverse.DirectoryManager.SearchTypeFlags,LibreMetaverse.DirectoryManager.DirFindFlags,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPeopleAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.AgentSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPlacesAsync(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IAsyncEnumerable\u003CLibreMetaverse.DirectoryManager.PlacesSearchData\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.ICollection\u00601", + "signature": "System.Collections.Generic.ICollection\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.CoarseLocationUpdateEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,LibreMetaverse.Vector3},System.Collections.Generic.ICollection{LibreMetaverse.UUID},System.Collections.Generic.ICollection{LibreMetaverse.UUID})", + "position": "parameter:newEntries", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoarseLocationUpdateEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,LibreMetaverse.Vector3},System.Collections.Generic.ICollection{LibreMetaverse.UUID},System.Collections.Generic.ICollection{LibreMetaverse.UUID})", + "position": "parameter:removedEntries", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "position": "parameter:collection", + "signature": "System.Collections.Generic.ICollection\u003CT\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Func{\u0060\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Func{\u0060\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32)", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Func{\u0060\u00600})", + "position": "generic_constraint:TValueCollection", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.#ctor(LibreMetaverse.RLV.RlvRestrictionType,System.Guid,System.String,System.Collections.Generic.ICollection{System.Object})", + "position": "parameter:args", + "signature": "System.Collections.Generic.ICollection\u003CSystem.Object\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Keys", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CTKey\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Values", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.NewEntries", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.RemovedEntries", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Keys", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Values", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.InventoryNode\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Keys", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Values", + "position": "property_type", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.ICollection\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDArray", + "position": "interface", + "signature": "System.Collections.Generic.ICollection\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "position": "interface", + "signature": "System.Collections.Generic.ICollection\u003CSystem.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IDictionary\u00602", + "signature": "System.Collections.Generic.IDictionary\u003CTKey, TValue\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetsArchiver.#ctor(System.Collections.Generic.IDictionary{LibreMetaverse.UUID,LibreMetaverse.Assets.Asset})", + "position": "parameter:assets", + "signature": "System.Collections.Generic.IDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.IDictionary\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "position": "interface", + "signature": "System.Collections.Generic.IDictionary\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IEnumerable\u00601", + "signature": "System.Collections.Generic.IEnumerable\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperienceInfoAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:experienceIds", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:experienceIds", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachments", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetWearableAssets(LibreMetaverse.WearableType)", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetWearables", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.AppearanceManager.WearableData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "position": "parameter:resources", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.IDisposable\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SplitBy(System.String,System.Int32)", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:specificChildren", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "parameter:linksToCreate", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.ValueTuple\u003CLibreMetaverse.InventoryBase, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemsAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:items", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.AddRange(\u00600,System.Collections.Generic.IEnumerable{\u00601})", + "position": "parameter:values", + "signature": "System.Collections.Generic.IEnumerable\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Func{\u0060\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:materials", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Materials.LegacyMaterial\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Materials.LegacyMaterial\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SendMaterialUpdatesAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.GLTFMaterialUpdate},System.Threading.CancellationToken)", + "position": "parameter:updates", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.GLTFMaterialUpdate\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.GetChildren(LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.RLV.RlvSharedFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetTrackedPrimIds", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.RemoveRestrictionsForObjectsAsync(System.Collections.Generic.IEnumerable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:primIds", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildExpandedJointList(System.Collections.Generic.IEnumerable{System.String})", + "position": "parameter:jointsFilter", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.GetAllJoints", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Rendering.Joint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendAvatarMap(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID})", + "position": "parameter:avatars", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Animesh.AnimeshManager.AllPlayers", + "position": "property_type", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.Animesh.AnimeshPlayer\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Keys", + "position": "property_type", + "signature": "System.Collections.Generic.IEnumerable\u003CTKey\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Values", + "position": "property_type", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDArray", + "position": "interface", + "signature": "System.Collections.Generic.IEnumerable\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "position": "interface", + "signature": "System.Collections.Generic.IEnumerable\u003CSystem.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IEnumerator\u00601", + "signature": "System.Collections.Generic.IEnumerator\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerator\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.Generic.IEnumerator\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator", + "position": "interface", + "signature": "System.Collections.Generic.IEnumerator\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IEqualityComparer\u00601", + "signature": "System.Collections.Generic.IEqualityComparer\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:comparer", + "signature": "System.Collections.Generic.IEqualityComparer\u003CTKey\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IList\u00601", + "signature": "System.Collections.Generic.IList\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,System.Collections.Generic.IList{LibreMetaverse.UUID},System.String)", + "position": "parameter:assets", + "signature": "System.Collections.Generic.IList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SavePrimsAsync(LibreMetaverse.AssetManager,System.Collections.Generic.IList{LibreMetaverse.Assets.AssetPrim},System.String,System.String)", + "position": "parameter:prims", + "signature": "System.Collections.Generic.IList\u003CLibreMetaverse.Assets.AssetPrim\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.FindAll(System.Predicate{\u00602})", + "position": "return_type", + "signature": "System.Collections.Generic.IList\u003CTValue\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDArray", + "position": "interface", + "signature": "System.Collections.Generic.IList\u003CLibreMetaverse.StructuredData.OSD\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IReadOnlyCollection\u00601", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Func{\u0060\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.TryGetValue(\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}@)", + "position": "parameter:value", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.#ctor(LibreMetaverse.RLV.RlvSharedFolder,System.Collections.Generic.IReadOnlyCollection{LibreMetaverse.RLV.RlvInventoryItem})", + "position": "parameter:externalItems", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.GetBlacklist", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Item(\u00600)", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Values", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CSystem.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IReadOnlyDictionary\u00602", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CTKey, TValue\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AISResponseMeta.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:versions", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "position": "parameter:agents", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.ValueTuple\u003CSystem.Int32, System.Boolean\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AnimationsChangedEventArgs.#ctor(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:agentAnimations", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.GetPlaybackDevices", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.UInt32, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.GetRecordingDevices", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.UInt32, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.DecodeVisualParams", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.DecodeVisualParams", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.#ctor(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.CapsCategory,LibreMetaverse.CapsRateLimiterOptions})", + "position": "parameter:overrides", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.CapsCategory, LibreMetaverse.CapsRateLimiterOptions\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoarseLocationUpdateEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,LibreMetaverse.Vector3},System.Collections.Generic.ICollection{LibreMetaverse.UUID},System.Collections.Generic.ICollection{LibreMetaverse.UUID})", + "position": "parameter:positions", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetLockedFolders", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Guid, LibreMetaverse.RLV.LockedFolderPublic\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:rotDeltas", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:rotDeltas", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:rotDeltas", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:rotDeltas", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, System.Numerics.Quaternion\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetWearableParams(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:visualParams", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.ComputeBoneTransforms(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:paramValues", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:vpWeights", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, System.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AISResponseMeta.CategoryVersionUpdates", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AnimationsChangedEventArgs.Animations", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CoarseLocationUpdateEventArgs.Positions", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendsManager.FriendList", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.FriendInfo\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendsManager.FriendRequests", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.RegionsByHandleReadOnly", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.UInt64, LibreMetaverse.GridRegion\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.RegionsByUUIDReadOnly", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, System.UInt64\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.RegionsReadOnly", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.String, LibreMetaverse.GridRegion\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceManager.ListingsByFolder", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CLibreMetaverse.UUID, LibreMetaverse.Marketplace.MarketplaceListing\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceManager.ListingsById", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CSystem.Int32, LibreMetaverse.Marketplace.MarketplaceListing\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.IReadOnlyDictionary\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.IReadOnlyList\u00601", + "signature": "System.Collections.Generic.IReadOnlyList\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AISResponseMeta.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:brokenLinks", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AISResponseMeta.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:categories", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AISResponseMeta.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:items", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetAllListingFolderIds(LibreMetaverse.Inventory)", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.Marketplace.MarketplaceListing})", + "position": "parameter:listings", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Marketplace.MarketplaceListing\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParticleSimulator.GetParticles", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.LiveParticle\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "position": "parameter:itemsToAttach", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.AttachmentRequest\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByAttachmentPoint(LibreMetaverse.RLV.RlvAttachmentPoint)", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsById(System.Guid)", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByPrimId(System.Guid)", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByWearableType(LibreMetaverse.RLV.RlvWearableType)", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "position": "parameter:itemsToAttach", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.AttachmentRequest\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Collections.Generic.IReadOnlyList\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirChatChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "position": "parameter:channels", + "signature": "System.Collections.Generic.IReadOnlyList\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirEmoteChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "position": "parameter:channels", + "signature": "System.Collections.Generic.IReadOnlyList\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.FindRestrictions(System.String,System.Nullable{System.Guid})", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetRestrictionsByType(LibreMetaverse.RLV.RlvRestrictionType)", + "position": "return_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AISResponseMeta.BrokenLinksRemoved", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AISResponseMeta.CategoriesRemoved", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AISResponseMeta.ItemsRemoved", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.ParseResult.Messages", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.LoginResponseData.ParseMessage\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs.Listings", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Marketplace.MarketplaceListing\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.AttachExceptions", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.AttachRestrictions", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.DetachExceptions", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.DetachRestrictions", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvRestriction\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Children", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvSharedFolder\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Items", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.RLV.RlvInventoryItem\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenAvatarDefinition.AttachmentPoints", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Rendering.AvatarAttachmentPoint\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenAvatarDefinition.MeshDefinitions", + "position": "property_type", + "signature": "System.Collections.Generic.IReadOnlyList\u003CLibreMetaverse.Rendering.AvatarMeshDefinition\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.KeyValuePair\u00602", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Add(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "position": "parameter:item", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Contains(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "position": "parameter:item", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CopyTo(System.Collections.Generic.KeyValuePair{\u00600,\u00601}[],System.Int32)", + "position": "parameter:array", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Remove(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "position": "parameter:item", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00600,\u00602}})", + "position": "parameter:action", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey1, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00601,\u00602}})", + "position": "parameter:action", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey2, TValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupRolesMembersReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{System.Collections.Generic.KeyValuePair{LibreMetaverse.UUID,LibreMetaverse.UUID}})", + "position": "parameter:rolesMembers", + "signature": "System.Collections.Generic.KeyValuePair\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Func{\u0060\u00600})", + "position": "parameter:enumerable", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:kvp", + "signature": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Contains(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:kvp", + "signature": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.CopyTo(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD}[],System.Int32)", + "position": "parameter:array", + "signature": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:kvp", + "signature": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.Current", + "position": "property_type", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupRolesMembersReplyEventArgs.RolesMembers", + "position": "property_type", + "signature": "System.Collections.Generic.KeyValuePair\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator", + "position": "interface", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, TValue\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "interface", + "signature": "System.Collections.Generic.KeyValuePair\u003CTKey, System.Collections.Generic.IReadOnlyCollection\u003CTValue\u003E\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "position": "interface", + "signature": "System.Collections.Generic.KeyValuePair\u003CSystem.String, LibreMetaverse.StructuredData.OSD\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Generic.List\u00601", + "signature": "System.Collections.Generic.List\u003CT\u003E", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.PeerListUpdated", + "position": "event_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.PeerListUpdated", + "position": "event_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnPeerListUpdated", + "position": "event_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.GroupChatSessions", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ChatSessionMember\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetGesture.Sequence", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.GestureStep\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetNotecard.EmbeddedItems", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetPrim.Children", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.PrimObject\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Animations", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Attachments", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Avatar.Attachment\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Groups", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelFace.Indices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelFace.Vertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Faces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ImportExport.ModelFace\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.Positions", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoggedOutEventArgs.InventoryItems", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Options", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapBlock.Fields", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.MapField\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapPacket.Blocks", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.MapBlock\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Groups", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Picks", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.AgentProfileMessage.PickData\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfoMessage.Experiences", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.ExperienceInfo\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceListMessage.ExperienceIDs", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Allowed", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Blocked", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.Products", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Allowed", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Blocked", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Trusted", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.NetworkManager.Simulators", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Simulator\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.AccessBlackList", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.AccessWhiteList", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.viewerPolygons", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerPolygon\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.viewerPolygons", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerPolygon\u003E\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.viewerVertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerVertex\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.viewerVertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerVertex\u003E\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.pathNodes", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.PathNode\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.coords", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.faces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Face\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.normals", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.viewerFaces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerFace\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.coords", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.cut1CoordIndices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.cut2CoordIndices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.faceNumbers", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.faceUVs", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.UVCoord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.faces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Face\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.hollowCoordIndices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.outerCoordIndices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.us", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.vertexNormals", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.coords", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.faces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Face\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.normals", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.uvs", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.UVCoord\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMesh.viewerFaces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerFace\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.viewerPolygons", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerPolygon\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.viewerPolygons", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerPolygon\u003E\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.viewerVertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerVertex\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.viewerVertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.ViewerVertex\u003E\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.SignaledAnimations", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.Edge", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.Indices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.UInt16\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.TexCoords1", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Vector2\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.Vertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.Weights", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.VertexWeight\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.FacetedMesh.Faces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Face\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeights", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.LindenMesh.SkinWeightElement\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Path.Points", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.PathPoint\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.Faces", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.ProfileFace\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.Positions", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.SimpleMesh.Indices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CSystem.UInt16\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.SimpleMesh.Vertices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.CaptureDevices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.RenderDevices", + "position": "field_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetSimulatorsForObject(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Simulator\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.StartIMConferenceAsync(System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:participants", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:addedItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:removedItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:requestedItemsToAdd", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetCurrentOutfitLinksAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetWornAtAsync(LibreMetaverse.WearableType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:requestedItemsToRemove", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:addedItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:removedItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddAttachments(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Boolean)", + "position": "parameter:attachments", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "position": "parameter:wearableItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.BakeTypeToTextures(LibreMetaverse.BakeType)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.AvatarTextureIndex\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetColorFromParams(System.Collections.Generic.List{LibreMetaverse.AppearanceManager.ColorParamInfo})", + "position": "parameter:param", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.AppearanceManager.ColorParamInfo\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryWearable\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RemoveFromOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "position": "parameter:wearableItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "position": "parameter:wearableItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "position": "parameter:wearableItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RequestAgentWornAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.WearOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryBase},System.Boolean)", + "position": "parameter:wearables", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor(LibreMetaverse.Assets.PrimObject,System.Collections.Generic.List{LibreMetaverse.Assets.PrimObject})", + "position": "parameter:children", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.PrimObject\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAnimationEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.Animation})", + "position": "parameter:anims", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "position": "parameter:visualParams", + "signature": "System.Collections.Generic.List\u003CSystem.Byte\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarGroupsReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.AvatarGroup})", + "position": "parameter:avatarGroups", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.AvatarGroup\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.GetDisplayNamesAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:ids", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNames(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:ids", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirClassifiedsReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.DirectoryManager.Classified})", + "position": "parameter:classifieds", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.Classified\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirEventsReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.EventsSearchData})", + "position": "parameter:matchedEvents", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.EventsSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirGroupsReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.GroupSearchData})", + "position": "parameter:matchedGroups", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.GroupSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirLandReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.DirectoryManager.DirectoryParcel})", + "position": "parameter:dirParcels", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirPeopleReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.AgentSearchData})", + "position": "parameter:matchedPeople", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.AgentSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirPlacesReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.DirectoryParcel})", + "position": "parameter:matchedParcels", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateBansReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:banned", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateExperienceReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:allowed", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateExperienceReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:blocked", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateExperienceReplyEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:trusted", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateGroupsReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:allowedGroups", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateManagersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:managers", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:listParams", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateUsersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:allowedUsers", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ForceSelectObjectsReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},System.Boolean)", + "position": "parameter:objectIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridItemsEventArgs.#ctor(LibreMetaverse.GridItemType,System.Collections.Generic.List{LibreMetaverse.MapItem})", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.MapItemsAsync(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.Invite(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID)", + "position": "parameter:roles", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNames(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:groupIDs", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupNoticesListReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.GroupNoticesListEntry})", + "position": "parameter:notices", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.GroupNoticesListEntry\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupRolesMembersReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{System.Collections.Generic.KeyValuePair{LibreMetaverse.UUID,LibreMetaverse.UUID}})", + "position": "parameter:rolesMembers", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.KeyValuePair\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.OSDToPrimList(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.PrimListToOSD(System.Collections.Generic.List{LibreMetaverse.Primitive})", + "position": "parameter:prims", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ColladaLoader.Load(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ImportExport.ModelPrim\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.#ctor(LibreMetaverse.GridClient,System.Collections.Generic.List{LibreMetaverse.ImportExport.ModelPrim},System.String,System.String)", + "position": "parameter:prims", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ImportExport.ModelPrim\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.FindAllLinks(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryNode\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.GetContents(LibreMetaverse.InventoryFolder)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.GetContents(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseEmbedded(LibreMetaverse.StructuredData.OSDMap,System.Collections.Generic.List{LibreMetaverse.InventoryFolder}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@)", + "position": "parameter:folders", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseEmbedded(LibreMetaverse.StructuredData.OSDMap,System.Collections.Generic.List{LibreMetaverse.InventoryFolder}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@)", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseEmbedded(LibreMetaverse.StructuredData.OSDMap,System.Collections.Generic.List{LibreMetaverse.InventoryFolder}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@)", + "position": "parameter:links", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseFoldersFromEmbedded(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseItemsFromEmbedded(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseLinksFromEmbedded(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetInventoryRecursiveAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:cats", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetInventoryRecursiveAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetTaskInventoryAsync(LibreMetaverse.UUID,System.UInt32,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.LocalFind(LibreMetaverse.UUID,System.String[],System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.ParseTaskInventory(System.String)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:newNames", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:targetFolders", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:newNames", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:targetFolders", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken,System.Action{System.Collections.Generic.List{LibreMetaverse.InventoryItem}})", + "position": "parameter:callback", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:batch", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItems(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItems(System.Collections.Generic.List{LibreMetaverse.InventoryItem},LibreMetaverse.UUID)", + "position": "parameter:items", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoggedOutEventArgs.#ctor(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:inventoryItems", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectAnimationEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.Animation})", + "position": "parameter:anims", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeedObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DelinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DetachObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.GetSimulatorsForObject(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Simulator\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.LinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetObjectsGroup(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "position": "parameter:localIds", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPermissions(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.PermissionWho,LibreMetaverse.PermissionMask,System.Boolean)", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.SaleType,System.Int32)", + "position": "parameter:localIDs", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.FindAll(System.Predicate{\u00600})", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.FindAll(System.Predicate{\u00601})", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelAccessListReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.UInt32,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelAccessEntry})", + "position": "parameter:accessEntries", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ReturnObjects(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.ObjectReturnType,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:ownerIDs", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelObjectOwnersReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelPrimOwners})", + "position": "parameter:primOwners", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelPrimOwners\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PlacesReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.DirectoryManager.PlacesSearchData})", + "position": "parameter:matchedPlaces", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.PlacesSearchData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.SurfaceNormal(System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord})", + "position": "parameter:coordList", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.ToRows(System.Boolean)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.ToRows(System.Boolean)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Collections.Generic.List{System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord}},LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:rows", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Collections.Generic.List{System.Collections.Generic.List{LibreMetaverse.PrimMesher.Coord}},LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:rows", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.PrimMesher.Coord\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.IRendering.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "position": "parameter:vertices", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildExpandedJointList(System.Collections.Generic.IEnumerable{System.String})", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[])", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[])", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[],System.Collections.Generic.List{LibreMetaverse.Vector3}@)", + "position": "parameter:boundingHull", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[],System.Collections.Generic.List{LibreMetaverse.Vector3}@)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.MeshSubMeshAsConvexHulls(LibreMetaverse.Primitive,System.Byte[],System.Collections.Generic.List{LibreMetaverse.Vector3}@)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.Vector3\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "position": "parameter:vertices", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingLoader.ListRenderers(System.String)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "position": "parameter:vertices", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:buttons", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.#ctor(System.Collections.Generic.List{LibreMetaverse.StructuredData.OSD})", + "position": "parameter:value", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:avail", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CaptureDevices", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CurrentCaptureDevices", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CurrentRenderDevices", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RenderDevices", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.GetKnownPeers", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetActiveGroupVoiceSessions", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetActiveP2PCalls", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetAllKnownPeers", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetGroupVoicePeers(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetKnownPeers", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.GetKnownPeers", + "position": "return_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendAvatarArray(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:avatars", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LargeTextureUploadCost", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimation.Channels", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAnimationChannel\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimation.Samplers", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAnimationSampler\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Accessors", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAccessor\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Animations", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfAnimation\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.BufferViews", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfBufferView\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Buffers", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfBuffer\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.ExtensionsRequired", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.ExtensionsUsed", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Images", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfImage\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Materials", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfDocumentMaterial\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Meshes", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfMesh\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Nodes", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfNode\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Samplers", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfSampler\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Scenes", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfScene\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Skins", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfSkin\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Textures", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfTexture\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfMesh.Primitives", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Assets.Gltf.GltfPrimitive\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Children", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfScene.Nodes", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Joints", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAnimationEventArgs.Animations", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.VisualParams", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Byte\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarGroupsReplyEventArgs.Groups", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.AvatarGroup\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.DirClassifiedsReplyEventArgs.Classifieds", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.Classified\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.DirEventsReplyEventArgs.MatchedEvents", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.EventsSearchData\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.DirGroupsReplyEventArgs.MatchedGroups", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.GroupSearchData\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.DirLandReplyEventArgs.DirParcels", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.DirPeopleReplyEventArgs.MatchedPeople", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.AgentSearchData\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.DirPlacesReplyEventArgs.MatchedParcels", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.DirectoryParcel\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateBansReplyEventArgs.Banned", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateExperienceReplyEventArgs.Allowed", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateExperienceReplyEventArgs.Blocked", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateExperienceReplyEventArgs.Trusted", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateGroupsReplyEventArgs.AllowedGroups", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateManagersReplyEventArgs.Managers", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateUsersReplyEventArgs.AllowedUsers", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.ForceSelectObjectsReplyEventArgs.ObjectIDs", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.UInt32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridItemsEventArgs.Items", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupNoticesListReplyEventArgs.Notices", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.GroupNoticesListEntry\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupRolesMembersReplyEventArgs.RolesMembers", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Collections.Generic.KeyValuePair\u003CLibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Imaging.Baker.Textures", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.AppearanceManager.TextureData\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CopyItemsResult.CopiedItems", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.FolderUpdateResult.Contents", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.NoResults", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.ClassifiedCategories", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Object\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.EventCategories", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Object\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.GlobalTextures", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Object\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.UiConfig", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.Object\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.ObjectAnimationEventArgs.Animations", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.Animation\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.AccessList", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelAccessEntry\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelObjectOwnersReplyEventArgs.PrimOwners", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.ParcelManager.ParcelPrimOwners\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.PlacesReplyEventArgs.MatchedPlaces", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CLibreMetaverse.DirectoryManager.PlacesSearchData\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ButtonLabels", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.Devices", + "position": "property_type", + "signature": "System.Collections.Generic.List\u003CSystem.String\u003E" + } + ] + }, + { + "doc_id": "T:System.Collections.Hashtable", + "signature": "System.Collections.Hashtable", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Dfa.m_map", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParseState.m_transitions", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParsingInfo.m_parsetable", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Production.m_alias", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ResWds.m_wds", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.TokensGen.defines", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Transition.m_reduce", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.cats", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.reswds", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.starts", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.tokens", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.types", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.literals", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.m_states", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.symbolInfo", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.symbols", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.types", + "position": "field_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.AccountLevelBenefits.#ctor(System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.Parse(System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventorySkeleton(System.String,System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUUID(System.String,System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseVector3(System.String,System.Collections.Hashtable)", + "position": "parameter:reply", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.SetTokens(LibreMetaverse.LslTools.YyLexer,System.Collections.Hashtable)", + "position": "parameter:h", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.Invoke(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.includes(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.reads(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Collections.Hashtable" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ToHashtable", + "position": "return_type", + "signature": "System.Collections.Hashtable" + } + ] + }, + { + "doc_id": "T:System.Collections.ICollection", + "signature": "System.Collections.ICollection", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SymbolSet.Keys", + "position": "property_type", + "signature": "System.Collections.ICollection" + } + ] + }, + { + "doc_id": "T:System.Collections.IDictionaryEnumerator", + "signature": "System.Collections.IDictionaryEnumerator", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolSet.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.IDictionaryEnumerator" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.IDictionaryEnumerator" + } + ] + }, + { + "doc_id": "T:System.Collections.IEnumerable", + "signature": "System.Collections.IEnumerable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "position": "interface", + "signature": "System.Collections.IEnumerable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "interface", + "signature": "System.Collections.IEnumerable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDArray", + "position": "interface", + "signature": "System.Collections.IEnumerable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "position": "interface", + "signature": "System.Collections.IEnumerable" + } + ] + }, + { + "doc_id": "T:System.Collections.IEnumerator", + "signature": "System.Collections.IEnumerator", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.IEnumerator" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.IEnumerator" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.GetEnumerator", + "position": "return_type", + "signature": "System.Collections.IEnumerator" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator", + "position": "interface", + "signature": "System.Collections.IEnumerator" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ObjectList.OListEnumerator", + "position": "interface", + "signature": "System.Collections.IEnumerator" + } + ] + }, + { + "doc_id": "T:System.DateTime", + "signature": "System.DateTime", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.CreationDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.CreationDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.RezDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.Classified.CreationDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.Classified.ExpirationDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.InstantMessage.Timestamp", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.DisplayNameNextUpdate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.MemberSince", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CreationDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Timestamp", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TimeStamp", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.TimeStamp", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ClaimDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentStartTime", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.ClaimDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelManager.ParcelAccessEntry.Time", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.NewestPrim", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.CreationDate", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.InactiveSince", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.Epoch", + "position": "field_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.BannedAgentsEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.DateTime})", + "position": "parameter:bannedAgents", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.MeanCollisionEventArgs.#ctor(LibreMetaverse.MeanCollisionType,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,System.DateTime)", + "position": "parameter:time", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsDate", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromDate(System.DateTime)", + "position": "parameter:value", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.DateTime", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.DateTime)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.#ctor(System.DateTime)", + "position": "parameter:dt", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsDate", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsDate", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DateTimeToUnixTime(System.DateTime)", + "position": "parameter:time", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UnixTimeToDateTime(System.Int32)", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UnixTimeToDateTime(System.UInt32)", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetP2PCallInfo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.NextUpdate", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.Updated", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.LastPositionUpdate", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.BannedAgentsEventArgs.BannedAgents", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.created", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.modified", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryItem.CreationDate", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryNode.ModifyTime", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.LastSyncUtc", + "position": "property_type", + "signature": "System.DateTime" + }, + { + "owner_doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Time", + "position": "property_type", + "signature": "System.DateTime" + } + ] + }, + { + "doc_id": "T:System.Double", + "signature": "System.Double", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.GridX", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.GridY", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionX", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionY", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionZ", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.link_cost", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.link_physics_cost", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.object_cost", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.GetObjectCostMessage.physics_cost", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.GlobalX", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.GlobalY", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.GlobalX", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.GlobalY", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ValidUntil", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.MetersTraveled", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.Value", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector3d.X", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector3d.Y", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector3d.Z", + "position": "field_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(System.Double)", + "position": "parameter:heading", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.UpdateFromHeading(System.Double,System.Boolean)", + "position": "parameter:heading", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.Double,System.Double,System.Double)", + "position": "parameter:globalX", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.Double,System.Double,System.Double)", + "position": "parameter:globalY", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.Double,System.Double,System.Double)", + "position": "parameter:z", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHoverHeightAsync(System.Double,System.Threading.CancellationToken)", + "position": "parameter:hoverHeight", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromHSV(System.Double,System.Double,System.Double)", + "position": "parameter:hue", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromHSV(System.Double,System.Double,System.Double)", + "position": "parameter:saturation", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromHSV(System.Double,System.Double,System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(System.Double)", + "position": "parameter:heading", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Add(\u00600,\u00601,System.Double)", + "position": "parameter:expirationSeconds", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.AddOrUpdate(\u00600,\u00601,System.Double)", + "position": "parameter:expirationSeconds", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601,System.Double)", + "position": "parameter:expirationSeconds", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.ProgressReport.#ctor(System.Nullable{System.Int64},System.Int64,System.Nullable{System.Double})", + "position": "parameter:percent", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertDoubleArray(System.String)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Double[])", + "position": "parameter:values", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadDouble", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsReal", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromReal(System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Double", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Double)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsReal", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsReal", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.NetworkToHostDouble(System.Byte[])", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.#ctor(System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsReal", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsReal", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToDouble(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Double,System.Double,System.Double)", + "position": "parameter:max", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Double,System.Double,System.Double)", + "position": "parameter:min", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Double,System.Double,System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Double,System.Double,System.Double)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytesBig(System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "position": "parameter:amount", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "position": "parameter:tangent1", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "position": "parameter:tangent2", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "position": "parameter:value1", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "position": "parameter:value2", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Double,System.Double,System.Double,System.Double,System.Double)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IsFinite(System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Double,System.Double,System.Double)", + "position": "parameter:amount", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Double,System.Double,System.Double)", + "position": "parameter:value1", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Double,System.Double,System.Double)", + "position": "parameter:value2", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Double,System.Double,System.Double)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.RandomDouble", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ReadDoubleLittleEndian(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Double,System.Double,System.Double)", + "position": "parameter:amount", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Double,System.Double,System.Double)", + "position": "parameter:value1", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Double,System.Double,System.Double)", + "position": "parameter:value2", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Double,System.Double,System.Double)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseDouble(System.String,System.Double@)", + "position": "parameter:result", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteDoubleLittleEndian(System.Byte[],System.Int32,System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Double)", + "position": "parameter:value", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Double,System.Double,System.Double)", + "position": "parameter:x", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Double,System.Double,System.Double)", + "position": "parameter:y", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Double,System.Double,System.Double)", + "position": "parameter:z", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ApproxEquals(LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:tolerance", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Distance(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.DistanceSquared(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Divide(LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:value2", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Dot(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Length", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.LengthSquared", + "position": "return_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Lerp(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:amount", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Multiply(LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:scaleFactor", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.SmoothStep(LibreMetaverse.Vector3d,LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:amount", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.op_Division(LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:divider", + "signature": "System.Double" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.op_Multiply(LibreMetaverse.Vector3d,System.Double)", + "position": "parameter:scaleFactor", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LastnameChangeCost", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LindenBuyFee", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.AssetCache.AutoPruneInterval", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Max", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Min", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfMesh.Weights", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Weights", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.Percent", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat.Value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat3.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.end", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.start", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetUnit.meter", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.capsule.height", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat.Value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cylinder.height", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.depth_clear", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x1", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common.Value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x1", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x1", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type.value", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x1", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lookat.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.matrix.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rotate.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skew.Values", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.sphere.radius", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.height", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.height", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapOffsetX", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapOffsetY", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapRepeatX", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapRepeatY", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.NormalMapRotation", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapOffsetX", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapOffsetY", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapRepeatX", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapRepeatY", + "position": "property_type", + "signature": "System.Double" + }, + { + "owner_doc_id": "P:LibreMetaverse.Materials.LegacyMaterial.SpecularMapRotation", + "position": "property_type", + "signature": "System.Double" + } + ] + }, + { + "doc_id": "T:System.Enum", + "signature": "System.Enum", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.EnumInfoExtensions.GetText(System.Enum)", + "position": "parameter:value", + "signature": "System.Enum" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.EnumToText(System.Enum)", + "position": "parameter:value", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccessDeniedReason", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccessList", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.ControlFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingFailureReason", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GestureStepType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessorType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfComponentType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfAlphaMode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachmentPoint", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarTextureIndex", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.BakeType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.BorderCrossingDirection", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Bumpiness", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsCategory", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChannelType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatAudibleLevel", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSourceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClickAction", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.CompressedFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DeRezDestination", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryEventAction", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedCategories", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.DirFindFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventCategories", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.PlacesFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.SearchTypeFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EffectType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentTrack", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateAssetType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessDelta", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateReturnFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.LandStatReportType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.RegionMaturity", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExtraParamType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.FaceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.FieldType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.FolderType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendRights", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenericStreamingMethod", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Grass", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridItemType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayerType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupBanAction", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupPowers", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleChangeType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleUpdate", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.HandPose", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.HoleType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageCodec", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.NodeType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.UpAxisType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.VersionType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_face_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_func_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_material_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageDialog", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageOnline", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryItemFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventorySortOrder", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.JointType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LandingType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LastExecStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessageLevel", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LookAtType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax.LslCategory", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSymbol.SymType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Precedence.PrecType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MappingType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderRole", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Material", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MeanCollisionType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaControls", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaPermission", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MoneyTransactionType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ClassType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.SendtoType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ValueType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.DisconnectType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectCategory", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectReturnType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PCode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketFrequency", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelAccessFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelCategory", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaCommand", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelOverlayType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelPropertiesStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelResult", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PathCurve", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PayPriceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionMask", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionWho", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PhysicsShapeType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PointAtType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PathType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimMode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileCurve", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvAttachmentPoint", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGestureState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetDebugType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetEnvType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestrictionType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvWearableType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionProtocols", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionRestartDays", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.DetailLevel", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceMask", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.JointSupportCategory", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ReportType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.SaleType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptControlChange", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptPermission", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptSensorTypeFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.SculptType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Shininess", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimAccess", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.SlappCommand", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.SourceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.Type", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.StatusCode", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDFormat", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TargetType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportLureFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformAction", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformBrushSize", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.LayerType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureAttributes", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureRequestState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransactionFlags", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransferError", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Tree", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.UpdateType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.WaterType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utils.Platform", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerUriType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualColorOperation", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceServiceType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceStatus", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "position": "base_type", + "signature": "System.Enum" + }, + { + "owner_doc_id": "T:LibreMetaverse.WearableType", + "position": "base_type", + "signature": "System.Enum" + } + ] + }, + { + "doc_id": "T:System.EventArgs", + "signature": "System.EventArgs", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.MuteListUpdated", + "position": "event_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentAccessEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentCachedBakesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentDataReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentExperiencesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentPreferencesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentWearablesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AlertMessageEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AnimationsChangedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceSetEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetUploadEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachedSoundEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachedSoundGainChangeEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarAnimationEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarAppearanceEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarClassifiedReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarGroupsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarInterestsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarNotesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarPickerReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarPicksReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarPropertiesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarRenderInfoEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarSitChangedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarSitResponseEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.BalanceEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.BannedAgentsEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.CallingCardOfferedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.CameraConstraintEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapabilitiesReceivedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSessionMemberAddedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSessionMemberLeftEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClassifiedInfoReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.CoarseLocationUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.CurrentGroupsEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirClassifiedsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirEventsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirGroupsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirLandReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirPeopleReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirPlacesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DisconnectedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.DisplayNameUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateBansReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateCovenantReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateExperienceReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateGroupsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateManagersReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateUpdateInfoReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateUsersReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EventInfoReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.EventQueueRunningEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExperienceInfoEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExperiencePreferencesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FindObjectByPathReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FolderUpdatedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ForceSelectObjectsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendFoundReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendInfoEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendNamesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendsReadyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendshipOfferedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendshipResponseEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendshipTerminatedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenericStreamingMessageEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridItemsEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayerEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridRegionEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupAccountSummaryReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupChatJoinedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupCreatedReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupDroppedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupInvitationEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupMembersReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupNamesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupNoticesListReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupOperationEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupProfileEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRolesDataReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRolesMembersReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupTitlesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageReceiveProgressEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.InitiateDownloadEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryObjectAddedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryObjectOfferedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryObjectRemovedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryObjectUpdatedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ItemReceivedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.KillObjectEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.KillObjectsEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.LandPatchReceivedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.LegacyEnvironmentEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoadUrlEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoggedOutEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginProgressEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.MeanCollisionEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.MoneyBalanceReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.NavMeshStatusUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectAnimationEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectDataBlockUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectMediaEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectPropertiesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectPropertiesFamilyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketReceivedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketSentEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelAccessListReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelDwellReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelEnvironmentEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelInfoReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaCommandEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaUpdateReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelObjectOwnersReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelOverlayEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelPropertiesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParticleUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PayPriceReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PhysicsPropertiesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PickInfoReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PlacesReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PreloadSoundEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProductInfoEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RebakeAvatarTexturesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionCrossedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionCrossingPredictionEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionEnvironmentEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionExperiencesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionHandleReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SaveAssetToInventoryEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptControlEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptDialogEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptQuestionEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptRunningReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptSensorReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SetDisplayNameReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimChangedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimConnectedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimConnectingEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimDisconnectedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimParcelsDownloadedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundTriggerEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.TaskInventoryReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.TaskItemReceivedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerseObjectUpdateEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.TopCollidersReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.TopScriptsReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.UUIDNameReplyEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerBenefitsEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerEffectEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerEffectLookAtEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerEffectPointAtEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + }, + { + "owner_doc_id": "T:LibreMetaverse.XferReceivedEventArgs", + "position": "base_type", + "signature": "System.EventArgs" + } + ] + }, + { + "doc_id": "T:System.EventHandler", + "signature": "System.EventHandler", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.LslSyntax.SyntaxChanged", + "position": "event_type", + "signature": "System.EventHandler" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionCreate", + "position": "event_type", + "signature": "System.EventHandler" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionRemove", + "position": "event_type", + "signature": "System.EventHandler" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceSession.OnParticipantAdded", + "position": "event_type", + "signature": "System.EventHandler" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceSession.OnParticipantRemoved", + "position": "event_type", + "signature": "System.EventHandler" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceSession.OnParticipantUpdate", + "position": "event_type", + "signature": "System.EventHandler" + } + ] + }, + { + "doc_id": "T:System.EventHandler\u00601", + "signature": "System.EventHandler\u003CTEventArgs\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AgentDataReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AgentDataReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AgentExperiencesUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AgentExperiencesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AgentPreferencesUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AgentPreferencesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AlertMessage", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AlertMessageEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AnimationsChanged", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AnimationsChangedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AvatarRenderInfoUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarRenderInfoEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.AvatarSitResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarSitResponseEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.CameraConstraint", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.CameraConstraintEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ChatFromSimulator", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ChatEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ChatSessionMemberAdded", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ChatSessionMemberAddedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ChatSessionMemberLeft", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ChatSessionMemberLeftEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ExperienceInfoReceived", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ExperienceInfoEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ExperiencePreferencesUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ExperiencePreferencesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.GroupChatJoined", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupChatJoinedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.IM", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.InstantMessageEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.LoadURL", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.LoadUrlEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.MeanCollision", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.MeanCollisionEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.MoneyBalance", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.BalanceEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.MoneyBalanceReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.MoneyBalanceReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.MuteListUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CSystem.EventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.NavMeshStatusUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.NavMeshStatusUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ProductInfoUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ProductInfoEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.RegionCrossed", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RegionCrossedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.RegionCrossingPredicted", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RegionCrossingPredictionEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.RegionExperiencesUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RegionExperiencesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ScriptControlChange", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ScriptControlEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ScriptDialog", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ScriptDialogEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ScriptQuestion", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ScriptQuestionEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ScriptSensorReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ScriptSensorReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.SetDisplayNameReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SetDisplayNameReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.TeleportProgress", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.TeleportEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AgentManager.ViewerBenefitsUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ViewerBenefitsEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AppearanceManager.AgentWearablesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AgentWearablesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AppearanceManager.AppearanceSet", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AppearanceSetEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AppearanceManager.CachedBakesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AgentCachedBakesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AppearanceManager.RebakeAvatarRequested", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RebakeAvatarTexturesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AssetManager.AssetUploaded", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AssetUploadEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AssetManager.ImageReceiveProgress", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ImageReceiveProgressEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AssetManager.InitiateDownload", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.InitiateDownloadEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AssetManager.UploadProgress", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AssetUploadEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AssetManager.XferReceived", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.XferReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarAnimation", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarAnimationEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarAppearance", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarAppearanceEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarClassifiedReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarClassifiedReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarGroupsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarGroupsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarInterestsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarInterestsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarNotesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarNotesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarPickerReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarPickerReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarPicksReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarPicksReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.AvatarPropertiesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarPropertiesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.ClassifiedInfoReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ClassifiedInfoReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.DisplayNameUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DisplayNameUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.PickInfoReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PickInfoReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.UUIDNameReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.UUIDNameReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.ViewerEffect", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ViewerEffectEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.ViewerEffectLookAt", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ViewerEffectLookAtEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.AvatarManager.ViewerEffectPointAt", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ViewerEffectPointAtEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Caps.CapabilitiesReceived", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.CapabilitiesReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.DirClassifiedsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DirClassifiedsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.DirEventsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DirEventsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.DirGroupsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DirGroupsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.DirLandReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DirLandReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.DirPeopleReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DirPeopleReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.DirPlacesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DirPlacesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.EventInfoReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EventInfoReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.DirectoryManager.PlacesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PlacesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EnvironmentManager.LegacyEnvironmentUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.LegacyEnvironmentEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EnvironmentManager.ParcelEnvironmentUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelEnvironmentEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EnvironmentManager.RegionEnvironmentUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RegionEnvironmentEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateBansReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateBansReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateCovenantReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateCovenantReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateExperienceReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateExperienceReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateGroupsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateGroupsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateManagersReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateManagersReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateUpdateInfoReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateUpdateInfoReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.EstateUsersReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EstateUsersReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.TopCollidersReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.TopCollidersReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.EstateTools.TopScriptsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.TopScriptsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.CallingCardOffered", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.CallingCardOfferedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendFoundReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendFoundReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendNames", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendNamesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendOffline", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendInfoEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendOnline", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendInfoEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendRightsUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendInfoEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendshipOffered", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendshipOfferedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendshipResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendshipResponseEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.FriendshipTerminated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendshipTerminatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.FriendsManager.friendsListReady", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FriendsReadyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GridManager.CoarseLocationUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.CoarseLocationUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GridManager.GridItems", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GridItemsEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GridManager.GridLayer", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GridLayerEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GridManager.GridRegion", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GridRegionEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GridManager.RegionHandleReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RegionHandleReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.BannedAgents", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.BannedAgentsEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.CurrentGroups", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.CurrentGroupsEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupAccountSummaryReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupAccountSummaryReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupCreatedReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupCreatedReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupDropped", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupDroppedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupInvitation", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupInvitationEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupJoinedReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupOperationEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupLeaveReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupOperationEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupMemberEjected", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupOperationEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupMembersReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupMembersReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupNamesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupNamesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupNoticesListReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupNoticesListReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupProfile", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupProfileEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupRoleDataReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupRolesDataReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupRoleMembersReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupRolesMembersReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.GroupManager.GroupTitlesReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GroupTitlesReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Inventory.InventoryObjectAdded", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.InventoryObjectAddedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Inventory.InventoryObjectRemoved", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.InventoryObjectRemovedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Inventory.InventoryObjectUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.InventoryObjectUpdatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.FindObjectByPathReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FindObjectByPathReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.FolderUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.FolderUpdatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.InventoryObjectOffered", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.InventoryObjectOfferedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.ItemReceived", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ItemReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.SaveAssetToInventory", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SaveAssetToInventoryEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.ScriptRunningReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ScriptRunningReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.TaskInventoryReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.TaskInventoryReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.InventoryManager.TaskItemReceived", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.TaskItemReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Marketplace.MarketplaceManager.Error", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Marketplace.MarketplaceErrorEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Marketplace.MarketplaceManager.ListingChanged", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Marketplace.MarketplaceManager.ListingsSynced", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Marketplace.MarketplaceListingsSyncedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.Disconnected", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.DisconnectedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.EventQueueRunning", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.EventQueueRunningEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.GenericStreamingMessage", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.GenericStreamingMessageEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.LoggedOut", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.LoggedOutEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.LoginProgress", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.LoginProgressEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.PacketSent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PacketSentEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.SimChanged", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SimChangedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.SimConnected", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SimConnectedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.SimConnecting", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SimConnectingEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.NetworkManager.SimDisconnected", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SimDisconnectedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.AvatarSitChanged", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarSitChangedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.AvatarUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AvatarUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.KillObject", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.KillObjectEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.KillObjects", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.KillObjectsEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ObjectAnimation", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ObjectAnimationEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ObjectDataBlockUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ObjectDataBlockUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ObjectProperties", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ObjectPropertiesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ObjectPropertiesFamily", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ObjectPropertiesFamilyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ObjectPropertiesUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ObjectPropertiesUpdatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ObjectUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PrimEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.ParticleUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParticleUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.PayPriceReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PayPriceReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.PhysicsProperties", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PhysicsPropertiesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ObjectManager.TerseObjectUpdate", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.TerseObjectUpdateEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ForceSelectObjectsReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ForceSelectObjectsReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelAccessListReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelAccessListReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelDwellReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelDwellReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelInfoReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelInfoReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelMediaCommand", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelMediaCommandEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelMediaUpdateReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelMediaUpdateReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelObjectOwnersReply", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelObjectOwnersReplyEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelOverlaysDownloaded", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelOverlayEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.ParcelProperties", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.ParcelPropertiesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.ParcelManager.SimParcelsDownloaded", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SimParcelsDownloadedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.RLV.RlvRestrictionManager.RestrictionUpdated", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.RLV.EventArguments.RestrictionUpdatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.SoundManager.AttachedSound", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AttachedSoundEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.SoundManager.AttachedSoundGainChange", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.AttachedSoundGainChangeEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.SoundManager.PreloadSound", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.PreloadSoundEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.SoundManager.SoundTrigger", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.SoundTriggerEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.TerrainManager.LandPatchReceived", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.LandPatchReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAccountLoginResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAccountLoginStateChangeEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAuxAudioPropertiesEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAuxGetCaptureDevicesResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnAuxGetRenderDevicesResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnConnectorCreateResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionAddedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionCreateResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionGroupAddedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionMediaEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionNewEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantAddedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantPropertiesEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantRemovedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantStateChangeEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionParticipantUpdatedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionRemovedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionStateChangeEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnSessionUpdatedEvent", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs\u003E" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.Vivox.VoiceGateway.OnVoiceResponse", + "position": "event_type", + "signature": "System.EventHandler\u003CLibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:subscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:unsubscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:subscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:unsubscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:subscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:unsubscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscription\u00601.#ctor(System.Action{System.EventHandler{\u00600}},System.Action{System.EventHandler{\u00600}},System.EventHandler{\u00600})", + "position": "parameter:handler", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscription\u00601.#ctor(System.Action{System.EventHandler{\u00600}},System.Action{System.EventHandler{\u00600}},System.EventHandler{\u00600})", + "position": "parameter:subscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscription\u00601.#ctor(System.Action{System.EventHandler{\u00600}},System.Action{System.EventHandler{\u00600}},System.EventHandler{\u00600})", + "position": "parameter:unsubscribe", + "signature": "System.EventHandler\u003CTEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "position": "parameter:callback", + "signature": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "position": "parameter:callback", + "signature": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.UnregisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "position": "parameter:callback", + "signature": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketEventDictionary.RegisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "position": "parameter:eventHandler", + "signature": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketEventDictionary.UnregisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "position": "parameter:eventHandler", + "signature": "System.EventHandler\u003CLibreMetaverse.PacketReceivedEventArgs\u003E" + } + ] + }, + { + "doc_id": "T:System.Exception", + "signature": "System.Exception", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnGroupVoiceJoinFailed", + "position": "event_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnP2PCallFailed", + "position": "event_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnRegionTransitionFailed", + "position": "event_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnReprovisionFailed", + "position": "event_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnReprovisionFailed", + "position": "event_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeCancelAndDispose(System.Threading.CancellationTokenSource,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryException.#ctor(System.String,System.Exception)", + "position": "parameter:innerException", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,System.String)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,System.String)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,System.String)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,System.String)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient,System.Exception)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,System.Exception)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,System.String)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,System.String)", + "position": "parameter:exception", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginException.#ctor(System.String,System.Exception)", + "position": "parameter:innerException", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMessage.#ctor(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "position": "parameter:ex", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseResult.Add(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "position": "parameter:ex", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.#ctor(System.String,System.Exception)", + "position": "parameter:ex", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingException.#ctor(System.String,System.Exception)", + "position": "parameter:innerException", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.SetFeatures(System.Net.Http.HttpResponseMessage,System.Byte[],System.Exception)", + "position": "parameter:error", + "signature": "System.Exception" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDException.#ctor(System.String,System.Exception)", + "position": "parameter:innerException", + "signature": "System.Exception" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CopyItemsResult.Error", + "position": "property_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.Error", + "position": "property_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.ParseMessage.Exception", + "position": "property_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.Exception", + "position": "property_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManagerException", + "position": "base_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryException", + "position": "base_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginException", + "position": "base_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSToolsException", + "position": "base_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.RenderingException", + "position": "base_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDException", + "position": "base_type", + "signature": "System.Exception" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceException", + "position": "base_type", + "signature": "System.Exception" + } + ] + }, + { + "doc_id": "T:System.Func\u00601", + "signature": "System.Func\u003CTResult\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.UsingAsync\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,System.Threading.Tasks.Task{\u0060\u00601}})", + "position": "parameter:factory", + "signature": "System.Func\u003CTDisposable\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.Using\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,\u0060\u00601})", + "position": "parameter:factory", + "signature": "System.Func\u003CTDisposable\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseClientScopeAsync(LibreMetaverse.GridClient,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:action", + "signature": "System.Func\u003CSystem.Threading.Tasks.Task\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseRegionScopeAsync(LibreMetaverse.Simulator,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:action", + "signature": "System.Func\u003CSystem.Threading.Tasks.Task\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseScopeAsync(System.Object,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:action", + "signature": "System.Func\u003CSystem.Threading.Tasks.Task\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:collectionFactory", + "signature": "System.Func\u003CTValueCollection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{\u00600,System.Collections.Generic.IReadOnlyCollection{\u00601}}},System.Func{\u0060\u00600})", + "position": "parameter:collectionFactory", + "signature": "System.Func\u003CTValueCollection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:collectionFactory", + "signature": "System.Func\u003CTValueCollection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Func{\u0060\u00600})", + "position": "parameter:collectionFactory", + "signature": "System.Func\u003CTValueCollection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:collectionFactory", + "signature": "System.Func\u003CTValueCollection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Func{\u0060\u00600})", + "position": "parameter:collectionFactory", + "signature": "System.Func\u003CTValueCollection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:asyncAction", + "signature": "System.Func\u003CSystem.Threading.Tasks.Task\u003E" + } + ] + }, + { + "doc_id": "T:System.Func\u00602", + "signature": "System.Func\u003CT, TResult\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.Load(System.Byte[],System.Func{System.String,System.Byte[]})", + "position": "parameter:bufferLoader", + "signature": "System.Func\u003CSystem.String, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGltf(System.String,System.Func{System.String,System.Byte[]})", + "position": "parameter:bufferLoader", + "signature": "System.Func\u003CSystem.String, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.UsingAsync\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,System.Threading.Tasks.Task{\u0060\u00601}})", + "position": "parameter:action", + "signature": "System.Func\u003CTDisposable, System.Threading.Tasks.Task\u003CTResult\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.Using\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,\u0060\u00601})", + "position": "parameter:action", + "signature": "System.Func\u003CTDisposable, TResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:condition", + "signature": "System.Func\u003CTEventArgs, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:filter", + "signature": "System.Func\u003CTEventArgs, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:resultSelector", + "signature": "System.Func\u003CTEventArgs, TResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:filter", + "signature": "System.Func\u003CTEventArgs, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:resultSelector", + "signature": "System.Func\u003CTEventArgs, TResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:confirmCost", + "signature": "System.Func\u003CSystem.Int32, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetBonePositionProvider(System.Func{System.String,System.Numerics.Vector3})", + "position": "parameter:getBoneWorldPos", + "signature": "System.Func\u003CSystem.String, System.Numerics.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessJsonElement(System.Text.Json.JsonElement,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:sendString", + "signature": "System.Func\u003CSystem.String, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessOSDMap(LibreMetaverse.StructuredData.OSDMap,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:sendString", + "signature": "System.Func\u003CSystem.String, System.Boolean\u003E" + } + ] + }, + { + "doc_id": "T:System.Globalization.CultureInfo", + "signature": "System.Globalization.CultureInfo", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Utils.EnUsCulture", + "position": "field_type", + "signature": "System.Globalization.CultureInfo" + } + ] + }, + { + "doc_id": "T:System.Globalization.UnicodeCategory", + "signature": "System.Globalization.UnicodeCategory", + "kind": "enum", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.m_gencat", + "position": "field_type", + "signature": "System.Globalization.UnicodeCategory" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CatTest.#ctor(System.Globalization.UnicodeCategory)", + "position": "parameter:c", + "signature": "System.Globalization.UnicodeCategory" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.UsingCat(System.Globalization.UnicodeCategory)", + "position": "parameter:cat", + "signature": "System.Globalization.UnicodeCategory" + } + ] + }, + { + "doc_id": "T:System.Guid", + "signature": "System.Guid", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.#ctor(System.Guid,LibreMetaverse.RLV.RlvAttachmentPoint,System.Boolean)", + "position": "parameter:itemId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:targetUser", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:groupId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:target", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:objectId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:attachedPrimId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsById(System.Guid)", + "position": "parameter:itemId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.GetItemsByPrimId(System.Guid)", + "position": "parameter:primId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryBuildPathToFolder(System.Guid,System.String@)", + "position": "parameter:folderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:itemIds", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:targetUser", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:groupId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:target", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:objectId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:attachedPrimId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:externalFolderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:id", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:objectFolderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:folderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:itemId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:primId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanEdit(LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation,System.Nullable{System.Guid})", + "position": "parameter:objectId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveChat(System.String,System.Guid)", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShare(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowHoverText(LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation,System.Nullable{System.Guid})", + "position": "parameter:objectId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNameTags(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNames(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanStartIM(System.Guid)", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTPLure(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "position": "parameter:primId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpRequest(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTp(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTpRequest(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.#ctor(LibreMetaverse.RLV.RlvRestrictionType,System.Guid,System.String,System.Collections.Generic.ICollection{System.Object})", + "position": "parameter:sender", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.FindRestrictions(System.String,System.Nullable{System.Guid})", + "position": "parameter:senderFilter", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetLockedFolders", + "position": "return_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.GetTrackedPrimIds", + "position": "return_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.RemoveRestrictionsForObjectsAsync(System.Collections.Generic.IEnumerable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:primIds", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.TryGetLockedFolder(System.Guid,LibreMetaverse.RLV.LockedFolderPublic@)", + "position": "parameter:folderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessInstantMessageAsync(System.String,System.Guid,System.Threading.CancellationToken)", + "position": "parameter:senderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:senderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemAttachedAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:objectFolderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:itemId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:objectFolderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:primId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemUnwornAsync(System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:itemId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemUnwornAsync(System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:objectFolderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemWornAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:objectFolderId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:objectId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportUnsitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:objectId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.#ctor(System.Guid,System.String)", + "position": "parameter:id", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddChild(System.Guid,System.String)", + "position": "parameter:id", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:attachedPrimId", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:id", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.#ctor(System.Guid)", + "position": "parameter:Guid", + "signature": "System.Guid" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.Deconstruct(System.Guid@)", + "position": "parameter:Guid", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.AttachmentRequest.ItemId", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.Texture", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.ExternalItems", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.Folders", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.InventoryMap.Items", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.Id", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.AttachedPrimId", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.FolderId", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.Id", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvRestriction.Sender", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Id", + "position": "property_type", + "signature": "System.Guid" + }, + { + "owner_doc_id": "P:LibreMetaverse.UUID.Guid", + "position": "property_type", + "signature": "System.Guid" + } + ] + }, + { + "doc_id": "T:System.IAsyncDisposable", + "signature": "System.IAsyncDisposable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.GridClient", + "position": "interface", + "signature": "System.IAsyncDisposable" + } + ] + }, + { + "doc_id": "T:System.IAsyncResult", + "signature": "System.IAsyncResult", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.BeginInvoke(System.String,LibreMetaverse.UUID,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.BeginInvoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.BeginInvoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.BeginInvoke(System.String,LibreMetaverse.Assets.RegionSettings,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.BeginInvoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.BeginInvoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.BeginInvoke(System.String,LibreMetaverse.StructuredData.OSDMap,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.BeginInvoke(System.Object,Microsoft.Extensions.Logging.LogLevel,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.BeginInvoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Func.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Func.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.BeginInvoke(LibreMetaverse.LslTools.Parser,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.BeginInvoke(LibreMetaverse.LslTools.Lexer,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.BeginInvoke(System.Net.Sockets.SocketException,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.BeginInvoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.BeginInvoke(System.Single,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.BeginInvoke(System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.BeginInvoke(System.String,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "return_type", + "signature": "System.IAsyncResult" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "parameter:result", + "signature": "System.IAsyncResult" + } + ] + }, + { + "doc_id": "T:System.ICloneable", + "signature": "System.ICloneable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.AssetLoadedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Caps.EventQueueCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryChangeCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient.ConnectedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient.EventCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Logger.LogCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.AddToFunc", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Builder", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Func", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Relation", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SCreator", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.TCreator", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.LoginResponseCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureEntryFace", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback", + "position": "interface", + "signature": "System.ICloneable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback", + "position": "interface", + "signature": "System.ICloneable" + } + ] + }, + { + "doc_id": "T:System.IComparable", + "signature": "System.IComparable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AccessDeniedReason", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccessList", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.ControlFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingFailureReason", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GestureStepType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessorType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfComponentType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfAlphaMode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachmentPoint", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarTextureIndex", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.BakeType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.BorderCrossingDirection", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Bumpiness", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsCategory", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChannelType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatAudibleLevel", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSourceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClickAction", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CompressedFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DeRezDestination", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryEventAction", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedCategories", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.DirFindFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventCategories", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.PlacesFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.SearchTypeFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EffectType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentTrack", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateAssetType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessDelta", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateReturnFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.LandStatReportType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.RegionMaturity", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExtraParamType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FaceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FieldType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FolderType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendRights", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenericStreamingMethod", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Grass", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridItemType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayerType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupBanAction", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupPowers", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleChangeType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleUpdate", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HandPose", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HoleType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageCodec", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.NodeType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.UpAxisType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.VersionType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_face_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_func_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_material_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageDialog", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageOnline", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryItemFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventorySortOrder", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.JointType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LandingType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LastExecStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessageLevel", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LookAtType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax.LslCategory", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSymbol.SymType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Precedence.PrecType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MapBlock", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MapField", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MappingType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderRole", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Material", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MeanCollisionType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaControls", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaPermission", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MoneyTransactionType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ClassType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.SendtoType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ValueType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.DisconnectType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectCategory", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectReturnType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PCode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketFrequency", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelAccessFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelCategory", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaCommand", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelOverlayType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelPropertiesStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelResult", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PathCurve", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PayPriceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionMask", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionWho", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PhysicsShapeType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PointAtType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PathType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimMode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileCurve", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvAttachmentPoint", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGestureState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetDebugType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetEnvType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestrictionType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvWearableType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionProtocols", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionRestartDays", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.DetailLevel", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceMask", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.JointSupportCategory", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ReportType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SaleType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptControlChange", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptPermission", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptSensorTypeFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SculptType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Shininess", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimAccess", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SlappCommand", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SourceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.Type", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StatusCode", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDFormat", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TargetType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportLureFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformAction", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformBrushSize", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.LayerType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureAttributes", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureRequestState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransactionFlags", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransferError", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Tree", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.UpdateType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.WaterType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utils.Platform", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerUriType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualColorOperation", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceServiceType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceStatus", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "position": "interface", + "signature": "System.IComparable" + }, + { + "owner_doc_id": "T:LibreMetaverse.WearableType", + "position": "interface", + "signature": "System.IComparable" + } + ] + }, + { + "doc_id": "T:System.IComparable\u00601", + "signature": "System.IComparable\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Color4", + "position": "interface", + "signature": "System.IComparable\u003CLibreMetaverse.Color4\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.UUID", + "position": "interface", + "signature": "System.IComparable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector2", + "position": "interface", + "signature": "System.IComparable\u003CLibreMetaverse.Vector2\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector3", + "position": "interface", + "signature": "System.IComparable\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector3d", + "position": "interface", + "signature": "System.IComparable\u003CLibreMetaverse.Vector3d\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector4", + "position": "interface", + "signature": "System.IComparable\u003CLibreMetaverse.Vector4\u003E" + } + ] + }, + { + "doc_id": "T:System.IConvertible", + "signature": "System.IConvertible", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AccessDeniedReason", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccessList", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.ControlFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingFailureReason", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GestureStepType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessorType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfComponentType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfAlphaMode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachmentPoint", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarTextureIndex", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.BakeType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.BorderCrossingDirection", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Bumpiness", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsCategory", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChannelType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatAudibleLevel", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSourceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClickAction", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.CompressedFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DeRezDestination", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryEventAction", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedCategories", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.DirFindFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventCategories", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.PlacesFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.SearchTypeFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EffectType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentTrack", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateAssetType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessDelta", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateReturnFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.LandStatReportType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.RegionMaturity", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExtraParamType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.FaceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.FieldType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.FolderType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendRights", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenericStreamingMethod", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Grass", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridItemType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayerType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupBanAction", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupPowers", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleChangeType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleUpdate", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.HandPose", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.HoleType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageCodec", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.NodeType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.UpAxisType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.VersionType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_face_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_func_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_material_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageDialog", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageOnline", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryItemFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventorySortOrder", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.JointType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LandingType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LastExecStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessageLevel", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LookAtType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax.LslCategory", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSymbol.SymType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Precedence.PrecType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MappingType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderRole", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Material", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MeanCollisionType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaControls", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaPermission", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MoneyTransactionType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ClassType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.SendtoType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ValueType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.DisconnectType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectCategory", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectReturnType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PCode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketFrequency", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelAccessFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelCategory", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaCommand", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelOverlayType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelPropertiesStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelResult", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PathCurve", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PayPriceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionMask", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionWho", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PhysicsShapeType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PointAtType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PathType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimMode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileCurve", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvAttachmentPoint", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGestureState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetDebugType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetEnvType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestrictionType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvWearableType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionProtocols", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionRestartDays", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.DetailLevel", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceMask", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.JointSupportCategory", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ReportType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.SaleType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptControlChange", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptPermission", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptSensorTypeFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.SculptType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Shininess", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimAccess", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.SlappCommand", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.SourceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.Type", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.StatusCode", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDFormat", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TargetType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportLureFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformAction", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformBrushSize", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.LayerType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureAttributes", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureRequestState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransactionFlags", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransferError", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Tree", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.UpdateType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.WaterType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utils.Platform", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerUriType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualColorOperation", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceServiceType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceStatus", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "position": "interface", + "signature": "System.IConvertible" + }, + { + "owner_doc_id": "T:LibreMetaverse.WearableType", + "position": "interface", + "signature": "System.IConvertible" + } + ] + }, + { + "doc_id": "T:System.IDisposable", + "signature": "System.IDisposable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:resource", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "position": "parameter:resources", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "position": "generic_constraint:T", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.UsingAsync\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,System.Threading.Tasks.Task{\u0060\u00601}})", + "position": "generic_constraint:TDisposable", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.Using\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,\u0060\u00601})", + "position": "generic_constraint:TDisposable", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.BeginClientScope(LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.BeginRegionScope(LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.BeginScope(System.Object)", + "position": "return_type", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.IUpgradeableLock.DisposableUpgrade", + "position": "return_type", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLock.ReadLock", + "position": "return_type", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLock.WriteLock", + "position": "return_type", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.CurrentOutfitFolder", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfitHandler", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetCache", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AudioDevice", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsRateLimiter", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DisposalHelper.DisposalGuard", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DoubleDictionary\u00603", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EventSubscription\u00601", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExpiringCache\u00602", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendsManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridClient", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.DownloadManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HttpCapsClient", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.IGridClient", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InterestListManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Simulator", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.IAdvancedDisposable", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.IUpgradeableLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticReadLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticWriteLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.SpinReadLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.SpinWriteLock", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.IEventWait", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.ManagedAutoResetEvent", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.ManagedManualResetEvent", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.ManagedSemaphore", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager", + "position": "interface", + "signature": "System.IDisposable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession", + "position": "interface", + "signature": "System.IDisposable" + } + ] + }, + { + "doc_id": "T:System.IEquatable\u00601", + "signature": "System.IEquatable\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfTextureTransform", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Assets.GltfTextureTransform\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Avatar", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Avatar.Attachment", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Avatar.Attachment\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSessionMember", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.ChatSessionMember\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Color4", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Color4\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Group", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Group\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Matrix4", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Matrix4\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.NameValue\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Primitive\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Primitive.ParticleSystem\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimation", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Primitive.TextureAnimation\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Quaternion", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Quaternion\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.Vertex", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Rendering.Vertex\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.UUID", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector2", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Vector2\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector3", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector3d", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Vector3d\u003E" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector4", + "position": "interface", + "signature": "System.IEquatable\u003CLibreMetaverse.Vector4\u003E" + } + ] + }, + { + "doc_id": "T:System.IFormattable", + "signature": "System.IFormattable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AccessDeniedReason", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccessList", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.ControlFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingFailureReason", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GestureStepType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessorType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfComponentType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfAlphaMode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachmentPoint", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarTextureIndex", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.BakeType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.BorderCrossingDirection", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Bumpiness", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsCategory", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChannelType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatAudibleLevel", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSourceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClickAction", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CompressedFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DeRezDestination", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryEventAction", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedCategories", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.DirFindFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventCategories", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.PlacesFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.SearchTypeFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EffectType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentTrack", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateAssetType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessDelta", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateReturnFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.LandStatReportType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.RegionMaturity", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExtraParamType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FaceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FieldType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FolderType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendRights", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenericStreamingMethod", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Grass", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridItemType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayerType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupBanAction", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupPowers", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleChangeType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleUpdate", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HandPose", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HoleType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageCodec", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.NodeType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.UpAxisType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.VersionType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_face_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_func_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_material_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageDialog", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageOnline", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryItemFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventorySortOrder", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.JointType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LandingType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LastExecStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessageLevel", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LookAtType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax.LslCategory", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSymbol.SymType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Precedence.PrecType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MappingType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderRole", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Material", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MeanCollisionType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaControls", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaPermission", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MoneyTransactionType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ClassType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.SendtoType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ValueType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.DisconnectType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectCategory", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectReturnType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PCode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketFrequency", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelAccessFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelCategory", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaCommand", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelOverlayType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelPropertiesStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelResult", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PathCurve", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PayPriceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionMask", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionWho", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PhysicsShapeType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PointAtType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PathType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimMode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileCurve", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvAttachmentPoint", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGestureState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetDebugType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetEnvType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestrictionType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvWearableType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionProtocols", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionRestartDays", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.DetailLevel", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceMask", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.JointSupportCategory", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ReportType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SaleType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptControlChange", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptPermission", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptSensorTypeFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SculptType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Shininess", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimAccess", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SlappCommand", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SourceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.Type", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StatusCode", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDFormat", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TargetType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportLureFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformAction", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformBrushSize", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.LayerType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureAttributes", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureRequestState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransactionFlags", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransferError", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Tree", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.UpdateType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.WaterType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utils.Platform", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerUriType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualColorOperation", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceServiceType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceStatus", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "position": "interface", + "signature": "System.IFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.WearableType", + "position": "interface", + "signature": "System.IFormattable" + } + ] + }, + { + "doc_id": "T:System.IO.BinaryReader", + "signature": "System.IO.BinaryReader", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader", + "position": "base_type", + "signature": "System.IO.BinaryReader" + } + ] + }, + { + "doc_id": "T:System.IO.MemoryStream", + "signature": "System.IO.MemoryStream", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinaryStream(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.IO.MemoryStream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDBinaryStream(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "return_type", + "signature": "System.IO.MemoryStream" + } + ] + }, + { + "doc_id": "T:System.IO.Stream", + "signature": "System.IO.Stream", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.RegionSettings.FromStream(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.#ctor(System.IO.Stream)", + "position": "parameter:s", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.#ctor(System.IO.Stream)", + "position": "parameter:s", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRawPcmStreamAsync(System.IO.Stream,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:pcmStream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmStream(System.IO.Stream,System.Int32,System.Int32)", + "position": "parameter:pcmStream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.CopyStream(System.IO.Stream,System.IO.Stream)", + "position": "parameter:input", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.CopyStream(System.IO.Stream,System.IO.Stream)", + "position": "parameter:output", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String)", + "position": "return_type", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String,System.String)", + "position": "return_type", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ITextureCodec.Decode(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Skia.SkiaTextureCodec.Decode(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Targa.DecodeToManagedImage(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.#ctor(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.#ctor(System.IO.Stream,LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ConsumeBytes(System.IO.Stream,System.Int32)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.Deserialize(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeJson(System.IO.Stream)", + "position": "parameter:json", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDBinary(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDProtobuf(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.IO.Stream)", + "position": "parameter:xmlStream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindByte(System.IO.Stream,System.Byte)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindString(System.IO.Stream,System.String)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SkipWhiteSpace(System.IO.Stream)", + "position": "parameter:stream", + "signature": "System.IO.Stream" + } + ] + }, + { + "doc_id": "T:System.IO.StreamReader", + "signature": "System.IO.StreamReader", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(System.IO.StreamReader)", + "position": "parameter:inFile", + "signature": "System.IO.StreamReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Parser.Parse(System.IO.StreamReader)", + "position": "parameter:input", + "signature": "System.IO.StreamReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ObjMesh.#ctor(System.IO.StreamReader)", + "position": "parameter:sr", + "signature": "System.IO.StreamReader" + } + ] + }, + { + "doc_id": "T:System.IO.StringReader", + "signature": "System.IO.StringReader", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.BufferCharactersEqual(System.IO.StringReader,System.Char[],System.Int32)", + "position": "parameter:reader", + "signature": "System.IO.StringReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDNotation(System.IO.StringReader)", + "position": "parameter:reader", + "signature": "System.IO.StringReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetLengthInBrackets(System.IO.StringReader)", + "position": "parameter:reader", + "signature": "System.IO.StringReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetStringDelimitedBy(System.IO.StringReader,System.Char)", + "position": "parameter:reader", + "signature": "System.IO.StringReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.PeekAndSkipWhitespace(System.IO.StringReader)", + "position": "parameter:reader", + "signature": "System.IO.StringReader" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ReadAndSkipWhitespace(System.IO.StringReader)", + "position": "parameter:reader", + "signature": "System.IO.StringReader" + } + ] + }, + { + "doc_id": "T:System.IO.StringWriter", + "signature": "System.IO.StringWriter", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotationStream(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.IO.StringWriter" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotationStreamFormatted(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.IO.StringWriter" + } + ] + }, + { + "doc_id": "T:System.IO.TextWriter", + "signature": "System.IO.TextWriter", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.LslTools.GenBase.m_outFile", + "position": "field_type", + "signature": "System.IO.TextWriter" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Print(System.IO.TextWriter)", + "position": "parameter:s", + "signature": "System.IO.TextWriter" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser.#ctor(System.IO.TextWriter)", + "position": "parameter:ff", + "signature": "System.IO.TextWriter" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.EmitDfa(System.IO.TextWriter)", + "position": "parameter:outFile", + "signature": "System.IO.TextWriter" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.Emit(System.IO.TextWriter)", + "position": "parameter:m_outFile", + "signature": "System.IO.TextWriter" + } + ] + }, + { + "doc_id": "T:System.IProgress\u00601", + "signature": "System.IProgress\u003CT\u003E", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.DownloadProgressCallback", + "position": "field_type", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CopyFolderAsync(LibreMetaverse.InventoryFolder,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.SetInitialOutfitAsync(System.String,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfitHandler.#ctor(LibreMetaverse.GridClient,LibreMetaverse.Appearance.CurrentOutfitFolder,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "parameter:progressCallback", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadRequest.#ctor(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:downloadProgressCallback", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetRequestAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemFromNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UploadThumbnailAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:progress", + "signature": "System.IProgress\u003CLibreMetaverse.HttpCapsClient.ProgressReport\u003E" + } + ] + }, + { + "doc_id": "T:System.ISpanFormattable", + "signature": "System.ISpanFormattable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AccessDeniedReason", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccessList", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.ControlFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingFailureReason", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.CrossingState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitPhase", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GestureStepType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessorType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationInterpolation", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationTargetPath", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfComponentType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitiveMode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerFilter", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSamplerWrap", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfAlphaMode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveReader.TarEntryType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttachmentPoint", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarTextureIndex", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.BakeType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.BorderCrossingDirection", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Bumpiness", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsCategory", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChannelType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatAudibleLevel", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSourceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClickAction", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.CompressedFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DeRezDestination", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryEventAction", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedCategories", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.ClassifiedQueryFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.DirFindFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventCategories", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.PlacesFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.SearchTypeFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EffectType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentTrack", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateAssetType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessDelta", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateAccessReplyDelta", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.EstateReturnFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.LandStatReportType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.RegionMaturity", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExtraParamType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FaceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FieldType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FolderType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendRights", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenericStreamingMethod", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Grass", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridItemType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayerType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupBanAction", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupPowers", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleChangeType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRoleUpdate", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HandPose", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.HoleType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageCodec", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImage.ImageChannels", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType1", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType2", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType3", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType4", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType5", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemChoiceType6", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType1", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType2", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType3", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType4", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType5", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType6", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ItemsChoiceType7", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.MorphMethodType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.NodeType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.UpAxisType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.VersionType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_pipeline_stage", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_modifier_enum_common", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_opaque_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_filter_common", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler_wrap_common", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_face_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_channels_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_option_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_precision_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_range_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_type_enum", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_equation_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_blend_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_face_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_coord_src_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_fog_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_front_face_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_func_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_light_model_color_control_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_logic_op_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_material_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_polygon_mode_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_shade_model_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gl_stencil_op_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_wrap", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_stencil_op_type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandAlpha_enums", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operandRGB_enums", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorAlpha_enums", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_operatorRGB_enums", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_source_enums", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_mode_enums", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_pipeline_stage", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageDialog", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessageOnline", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryItemFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventorySortOrder", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.JointType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LandingType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LastExecStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessageLevel", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LookAtType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax.LslCategory", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSymbol.SymType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Precedence.PrecType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MappingType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderRole", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListingStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceValidationFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Material", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Materials.LegacyMaterialAlphaMode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MeanCollisionType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaControls", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaPermission", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MoneyTransactionType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ClassType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.SendtoType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue.ValueType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.DisconnectType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectCategory", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectReturnType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PCode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketFrequency", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelAccessFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelCategory", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMediaCommand", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelOverlayType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelPropertiesStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelResult", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PathCurve", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PayPriceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionMask", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PermissionWho", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PhysicsShapeType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PointAtType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PathType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh.SculptType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.BlendFunc", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleDataFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.ParticleFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem.SourcePattern", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimMode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileCurve", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfileFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvAttachmentPoint", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGestureState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetDebugType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvGetEnvType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService.TouchLocation", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestrictionType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvWearableType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionProtocols", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionRestartDays", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.DetailLevel", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.EndianAwareBinaryReader.SourceFormat", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceMask", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.FaceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.JointSupportCategory", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ReportType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SaleType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptControlChange", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptPermission", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ScriptSensorTypeFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SculptType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Shininess", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimAccess", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SlappCommand", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.SourceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.Type", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StatusCode", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDFormat", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TargetType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportLureFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TeleportStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformAction", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerraformBrushSize", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.LayerType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureAttributes", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TextureRequestState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransactionFlags", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransferError", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Tree", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.UpdateType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.WaterType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utils.Platform", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.ViewerUriType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualColorOperation", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceServiceType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceStatus", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.ESessionType", + "position": "interface", + "signature": "System.ISpanFormattable" + }, + { + "owner_doc_id": "T:LibreMetaverse.WearableType", + "position": "interface", + "signature": "System.ISpanFormattable" + } + ] + }, + { + "doc_id": "T:System.Int16", + "signature": "System.Int16", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.Prey", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.You", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.Value", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.VolumeDetail", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.InventorySerial", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.Serial", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.VFileType", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.InventorySerial", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Face.Indices", + "position": "field_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceRawSample(SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum,System.UInt32,System.Int16[])", + "position": "parameter:sample", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamples(System.Int16[],System.Int32,System.Int32)", + "position": "parameter:pcmInterleaved", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamplesPacedAsync(System.Int16[],System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:pcmInterleaved", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackShort", + "position": "return_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEOffsetShort(System.Single)", + "position": "return_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TERotationShort(System.Single)", + "position": "return_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadInt16", + "position": "return_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.Int16)", + "position": "parameter:value", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Int16)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.TaskInventoryReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int16,System.String)", + "position": "parameter:serial", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[])", + "position": "return_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16)", + "position": "parameter:value", + "signature": "System.Int16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.Int16" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.digits", + "position": "property_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.magnitude", + "position": "property_type", + "signature": "System.Int16" + }, + { + "owner_doc_id": "P:LibreMetaverse.TaskInventoryReplyEventArgs.Serial", + "position": "property_type", + "signature": "System.Int16" + } + ] + }, + { + "doc_id": "T:System.Int32", + "signature": "System.Int32", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.PeerManager.GainMapReceived", + "position": "event_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.GainMapReceived", + "position": "event_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnParcelVoiceInfo", + "position": "event_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceSession.OnGainMapReceived", + "position": "event_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.MaxChatMessageSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.MaxScriptDialogLabelSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.SignaledAnimations", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Animation.AnimationSequence", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Animesh.JointPose.Priority", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.BAKED_TEXTURE_COUNT", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLES_PER_LAYER", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLE_COUNT", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.WEARABLE_COUNT_MAX", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetDownload.nextPacket", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetDownload.outOfOrderPackets", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_BASE_COLOR", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_COUNT", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_EMISSIVE", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_METALLIC_ROUGHNESS", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetMaterial.TEXTURE_NORMAL", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetTexture.Components", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.Params", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ClickAction", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Softness", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Flags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.Serial", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LastAttachmentPoint", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LinkNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Material", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstParticleCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.DataFlags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Flags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Pattern", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.RemoteScriptAccessPIN", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SaleType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SculptBlock.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathCurve", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileCurve", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundFlags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.State", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.AgentLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.MaturityRating", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.TarHeader.FileSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.COFVersion", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.AppearanceNegative", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.AppearancePositive", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.BehaviorNegative", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.BehaviorPositive", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.BuildingNegative", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.BuildingPositive", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.GivenNegative", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Statistics.GivenPositive", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.Priority", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.BuddyListEntry.BuddyRightsGiven", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.BuddyListEntry.BuddyRightsHas", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.Classified.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.GroupSearchData.Members", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DrivenParamInfo.ParamID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridLayer.Bottom", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridLayer.Left", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridLayer.Right", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridLayer.Top", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridRegion.X", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridRegion.Y", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.Contribution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.GroupMembershipCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.GroupRolesCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.MembershipFee", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.Money", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.Balance", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.GroupTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.GroupTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.LandTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.LandTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.LightTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.LightTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.NonExemptMembers", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.ObjectTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.ObjectTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.ParcelDirFeeCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.ParcelDirFeeEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.TotalCredits", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.TotalDebits", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupMember.Contribution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupProposal.Duration", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupProposal.Quorum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.Attempt", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.Retries", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImageDownload.DiscardLevel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImageRequest.DiscardLevel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Height", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Imaging.ManagedImage.Width", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.InventoryFolder.VERSION_UNKNOWN", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.InventoryManager.MAX_GIVE_ITEMS", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Timeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSToolsException.nExceptionNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_yynum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CommentList.len", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CommentList.spos", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Dfa.Action.a_act", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Dfa.m_reswds", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Error.state", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ErrorHandler.counter", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.GenBase.LastSymbol", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.LNode.m_state", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Lexer.m_pch", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.LineList.head", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.LineManager.end", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.LineManager.lines", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParseStackEntry.m_state", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParseState.m_state", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParserAction.m_len", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParserEntry.m_priority", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParserOldAction.m_action", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParserReduce.m_depth", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParsingInfo.m_yynum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Precedence.m_prec", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ProdItem.m_pos", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Production.m_pno", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Production.m_prec", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SYMBOL.pos", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.charPosition", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.endOfLine", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.lineNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.rawCharPosition", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SourceLineInfo.startOfLine", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.action", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.m_trans", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SymbolsGen.pno", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_yynum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Transition.m_tno", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyParser.arr", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapAdultLandForSale.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapAdultLandForSale.Size", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapAgentLocation.AvatarCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapBlock.Count", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapBlock.KeywordPosition", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapField.Count", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapField.KeywordPosition", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapLandForSale.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapLandForSale.Size", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.Height", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.Width", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.Contribution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CaptionIndex", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.GodLevel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo.Weight", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.OverLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.ReportingLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryAvailable", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryUsed", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.CallbackID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.Port", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.Port", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Port", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueAck.AckID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueEvent.Sequence", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Maturity", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Quota", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerMessageBase.Flags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Bottom", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Left", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Right", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData.Top", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.ResourceCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.UploadPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.Face", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Resources", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner.Count", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Area", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ClaimPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.GroupPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MaxPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaHeight", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaWidth", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OtherCleanTime", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OtherCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OtherPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.OwnerPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.PassPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.PublicCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.RentPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SelectedPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SelfCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SimWideMaxPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.SimWideTotalPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.TotalPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaHeight", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaWidth", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.ParcelID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Flags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RegionInfoMessage.ParcelLocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.MajorVersion", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.MinorVersion", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.MapClicks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.ProfileClicks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.SearchMapClicks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.SearchProfileClicks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.SearchTeleportClicks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SearchStatRequestReply.TeleportClicks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Status", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.LocationID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.Port", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.MediaFlags", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.PathCurve", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileCurve", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.AnimatedObjectLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.AnimationUploadCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.AttachmentLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.CreateGroupCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.GroupMembershipLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.LargeTextureUploadCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.PicksLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.SoundUploadCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage.TextureUploadCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentsInView", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresInvalid", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresOffCircuit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresResent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.FailuresSendPacket", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InCompressedPackets", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscInt1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscInt2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutCompressedPackets", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.RegionsVisited", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.StatsDropped", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.StatsFailedResends", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPUClass", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemInstalledRam", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.ResendCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.TickCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.MaxPendingAcks", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.MaxResendCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PacketSettings.StatsQueueSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.Result", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.SerialNum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.SerialNum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.Contribution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.AnimSequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.CofVersion", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.RelatedRights", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Channel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Channel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.PriceForListing", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.PriceForListing", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.GroupLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.MembershipFee", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.MembershipFee", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.PriceForListing", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.Members", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Area", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.Area", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Reputation", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ObjectCapacity", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ObjectCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceEnergyUnit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceGroupCreate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceObjectClaim", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceParcelClaim", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceParcelRent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PricePublicObjectDecay", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PricePublicObjectDelete", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceRentLight", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceUpload", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.TeleportMinPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ErrorPacket.DataBlock.Code", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryStart", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.SortOrder", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.PricePerMeter", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.RedirectGridX", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.RedirectGridY", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.RelatedRights", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.Balance", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.GroupTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.GroupTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LandTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LandTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LightTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.LightTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.NonExemptMembers", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ObjectTaxCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ObjectTaxEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ParcelDirFeeCurrent", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ParcelDirFeeEstimate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.TotalCredits", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.TotalDebits", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.CurrentInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.IntervalDays", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.Quorum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.MemberCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.Contribution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.GroupMembershipCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.GroupRolesCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.MembershipFee", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Money", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.RoleCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.Quorum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.NumVotes", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.Descendents", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.Version", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.GroupLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.MembershipFee", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.GroupLimit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ParcelLocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Extra", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Extra2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.MoneyBalance", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCommitted", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCredit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.AnimSequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FaceIndex", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FaceIndex", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FaceIndex", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.OwnershipCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.OwnershipCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Packet.MTU", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.Time", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.Sections", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.Time", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.Area", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.AuctionID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaHeight", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.MediaWidth", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.Count", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Area", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ClaimDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ClaimPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.GroupPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.MaxPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OtherCleanTime", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OtherCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OtherPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.OwnerPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.PassPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.PublicCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RentPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.RequestResult", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SelectedPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SelfCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SimWideMaxPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.SimWideTotalPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.TotalPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ParcelEnvironmentVersion", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.SequenceID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.PassPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.OtherCleanTime", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.PayButton", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.DefaultPayPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.SortOrder", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.SortOrder", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Price", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.CPUClassID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.CPURatio", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.PricePerMeter", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.RedirectGridX", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.RedirectGridY", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.PID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.Status", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.MoneyBalance", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCommitted", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.SquareMetersCredit", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.Questions", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ChatChannel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ButtonIndex", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ChatChannel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.Questions", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.Contribution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.AgentCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.PID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.TimeToLive", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.AgentCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.PID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.TimeToLive", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.X", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.Y", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.PID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.AgentCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.Type", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Duration", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Quorum", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ChannelType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ChannelType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Size", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Status", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.TargetType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ChannelType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Packet", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Status", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ChannelType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.SourceType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.MembershipFee", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.CreationDate", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.RegionsVisited", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.Area", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.ClaimPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.GroupPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.LocalID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.MaxPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.OtherCleanTime", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.OtherCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.OtherPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.OwnerPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.PassPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.PublicCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.RentPrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.SelfCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.SimWideMaxPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.SimWideTotalPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.TotalPrims", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.ActualArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.AuctionID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.BillableArea", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelManager.ParcelPrimOwners.Count", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaHeight", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaWidth", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.n1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.n2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.n3", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.primFace", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.uv1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.uv2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.uv3", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.v1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.v2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Face.v3", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.numPrimFaces", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.stepsPerRevolution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.numPrimFaces", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.stepsPerRevolution", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.twistBegin", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.twistEnd", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.bottomFaceNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.cut1CoordIndices", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.cut2CoordIndices", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.faceNumbers", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.hollowCoordIndices", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.hollowFaceNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.numHollowVerts", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.numOuterVerts", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.numPrimFaces", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.outerCoordIndices", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.outerFaceNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.height", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.SculptMap.width", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.VertexIndexer.numPrimFaces", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.coordIndex1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.coordIndex2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.coordIndex3", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerFace.primFaceNumber", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerPolygon.v1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerPolygon.v2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ViewerPolygon.v3", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ActiveClients", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ChildCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Softness", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.OwnershipCost", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.SalePrice", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureEntry.MAX_FACES", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.SortOrder", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProtocolManager.KeywordPositions", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProtocolManager.TypeSizes", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.Joints", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.BeginS", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.BeginT", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.Edge", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.ID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.NumS", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.NumT", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Morph.NumVertices", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.VertexRemap.RemapDestination", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.VertexRemap.RemapSource", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.TotalOutsidePoints", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Count", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.ProfileFace.Index", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint0", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint1", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint2", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Joint3", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.MaxHttpConnections", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.MaxPacketSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.MaxSequence", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.NetworkTickInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.PacketArchiveSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.PingInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.SimulatorPoolTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.UdpReceiveQueueCapacity", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.CPUClass", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.CPURatio", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ParcelOverlaysReceived", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.Sequence", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.ActiveClients", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.ParcelMap", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.Parcels", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainCompressor.END_OF_PATCHES", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainCompressor.PATCHES_PER_EDGE", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainManager.TerrainMaterialSlotCount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.GroupHeader.PatchSize", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.GroupHeader.Stride", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Header.PatchIDs", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Header.QuantWBits", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Header.Range", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.X", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Y", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TexturePipelineSettings.MaxConcurrentDownloads", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TexturePipelineSettings.RequestTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.AgentUpdateInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.CapsTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.InterpolationInterval", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.LoginTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.LogoutTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.MapRequestTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.ResendTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.SimulatorTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.TeleportTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TimingSettings.TransferTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TransactionInfo.Amount", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TransactionInfo.TransactionType", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Transfer.Size", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Transfer.Transferred", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.UDPPacketBuffer.DEFAULT_BUFFER_SIZE", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.UDPPacketBuffer.DataLength", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.Drivers", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.Group", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.ParamID", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParams.Group0ParamIds", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParams.Params", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.StatusCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.MicVolume", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.SpeakerVolume", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.Volume", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.StatusCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.Volume", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.StatusCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.Volume", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.LogLevel", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.ReturnCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.ReturnCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.StatusCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.StatusCode", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.BlockingTimeout", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.DAEMON_LOG_LEVEL", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.DAEMON_PORT", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VOICE_MAJOR_VERSION", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3.X", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3.Y", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3.Z", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.W", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.X", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.Y", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4.Z", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vote.NumVotes", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "F:LibreMetaverse.binBVHJoint.Priority", + "position": "field_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AISResponseMeta.#ctor(System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyList{LibreMetaverse.UUID},System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:versions", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilotLocal(System.Int32,System.Int32,System.Single)", + "position": "parameter:localX", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilotLocal(System.Int32,System.Int32,System.Single)", + "position": "parameter:localY", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Chat(System.String,System.Int32,LibreMetaverse.ChatType,System.Boolean)", + "position": "parameter:channel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "parameter:faceIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.FindExperienceByNameAsync(System.String,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:page", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.FindExperienceByNameAsync(System.String,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:pageSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveMoney(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.MoneyTransactionType,LibreMetaverse.TransactionFlags)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveObjectMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "parameter:faceIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GrabUpdate(LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "parameter:faceIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee(System.Int32)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "position": "parameter:agents", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:weight", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:parcelLocalId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ReplyToScriptDialog(System.Int32,System.Int32,System.String,LibreMetaverse.UUID)", + "position": "parameter:buttonIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ReplyToScriptDialog(System.Int32,System.Int32,System.String,LibreMetaverse.UUID)", + "position": "parameter:channel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Vector3d,System.String,System.String,System.Boolean)", + "position": "parameter:price", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,System.String,System.String,System.Boolean)", + "position": "parameter:price", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentThrottle.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AnimationsChangedEventArgs.#ctor(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:agentAnimations", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentParamValues", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.UpdateLastReceivedCOFVersion(System.Int32)", + "position": "parameter:cofVersion", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.GetTextureUploadCost(System.Int32)", + "position": "parameter:widthPixels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.GetTextureUploadCost(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadLargeTextureAsync(System.Byte[],System.Int32,System.Threading.CancellationToken)", + "position": "parameter:widthPixels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureId(System.Int32,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:slot", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureOffset(System.Int32,LibreMetaverse.Vector2)", + "position": "parameter:slot", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureRotation(System.Int32,System.Single)", + "position": "parameter:slot", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureScale(System.Int32,LibreMetaverse.Vector2)", + "position": "parameter:slot", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.PcmToOgg(System.Byte[],System.Int32,System.Int32,System.Int32)", + "position": "parameter:bitsPerSample", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.PcmToOgg(System.Byte[],System.Int32,System.Int32,System.Int32)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.PcmToOgg(System.Byte[],System.Int32,System.Int32,System.Int32)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetColors(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "position": "parameter:set", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetJoints(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "position": "parameter:set", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetTexCoords(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "position": "parameter:channel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetWeights(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "position": "parameter:set", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ConvertOctalBytesToDecimal(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ConvertOctalBytesToDecimal(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:startIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ConvertOctalBytesToDecimal(System.Byte[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.ConvertDecimalToPaddedOctalBytes(System.Int32,System.Int32)", + "position": "parameter:d", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.ConvertDecimalToPaddedOctalBytes(System.Int32,System.Int32)", + "position": "parameter:padding", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "parameter:aecLatencyMs", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmBytes(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmBytes(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamples(System.Int16[],System.Int32,System.Int32)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamples(System.Int16[],System.Int32,System.Int32)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamplesPacedAsync(System.Int16[],System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamplesPacedAsync(System.Int16[],System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRawPcmStreamAsync(System.IO.Stream,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRawPcmStreamAsync(System.IO.Stream,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetCaptureGainPercent(System.Int32)", + "position": "parameter:percent", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcGainPercent(System.UInt32,System.Int32)", + "position": "parameter:percent", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmFileLoop(System.String,System.Int32,System.Boolean)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmStream(System.IO.Stream,System.Int32,System.Int32)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmStream(System.IO.Stream,System.Int32,System.Int32)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.Attachment.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.DecodeVisualParams", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "position": "parameter:COFVersion", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Primitive.TextureEntryFace[],System.Collections.Generic.List{System.Byte},System.Byte,System.Int32,LibreMetaverse.AppearanceFlags,System.Int32)", + "position": "parameter:childCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.DecodeVisualParams", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BalanceEventArgs.#ctor(System.Int32)", + "position": "parameter:balance", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.ReadBytesUntilNull(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readJoint(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readKeys(System.Byte[],System.Int32@,System.Int32,System.Single,System.Single)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readKeys(System.Byte[],System.Int32@,System.Int32,System.Single,System.Single)", + "position": "parameter:keycount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBits(System.Int32,System.Int32)", + "position": "parameter:data", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBits(System.Int32,System.Int32)", + "position": "parameter:totalCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBits(System.UInt32,System.Int32)", + "position": "parameter:totalCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFixed(System.Single,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:fracBits", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFixed(System.Single,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:intBits", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackBits(System.Int32)", + "position": "parameter:totalCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackBits(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackFixed(System.Boolean,System.Int32,System.Int32)", + "position": "parameter:fracBits", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackFixed(System.Boolean,System.Int32,System.Int32)", + "position": "parameter:intBits", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackInt", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackString(System.Int32)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackUBits(System.Int32)", + "position": "parameter:totalCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:length", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.#ctor(System.Int32,LibreMetaverse.ICacheDictionaryRemovalStrategy{\u00600})", + "position": "parameter:maxSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CopyTo(System.Collections.Generic.KeyValuePair{\u00600,\u00601}[],System.Int32)", + "position": "parameter:arrayIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatSessionMember.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.CompareTo(LibreMetaverse.Color4)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.FromBytes(System.Byte[],System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToFloatBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchLandAsync(LibreMetaverse.DirectoryManager.SearchTypeFlags,LibreMetaverse.DirectoryManager.DirFindFlags,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:areaLimit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchLandAsync(LibreMetaverse.DirectoryManager.SearchTypeFlags,LibreMetaverse.DirectoryManager.DirFindFlags,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:priceLimit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartDirPlacesSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Int32)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartDirPlacesSearch(System.String,System.Int32)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartGroupSearch(System.String,System.Int32)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartGroupSearch(System.String,System.Int32,LibreMetaverse.DirectoryManager.DirFindFlags)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "parameter:areaLimit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "parameter:priceLimit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "parameter:areaLimit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "parameter:priceLimit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartPeopleSearch(System.String,System.Int32)", + "position": "parameter:queryStart", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.#ctor(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.RemoveAll(System.Predicate{\u00602})", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:paramID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "parameter:maxSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:parcelId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:parcelId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetParcelEnvironmentAsync(System.Int32,LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "position": "parameter:parcelId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateBansReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateGroupsReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateManagersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.LandStatRequest(System.Int32,LibreMetaverse.EstateTools.LandStatReportType,System.UInt32,System.String)", + "position": "parameter:parcelLocalID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RestartRegion(System.Int32)", + "position": "parameter:delay", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateUpdateInfoReplyEventArgs.#ctor(System.String,LibreMetaverse.UUID,System.UInt32,LibreMetaverse.RegionFlags,System.Int32)", + "position": "parameter:sunHour", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateUsersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "parameter:timeoutMs", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:timeoutMs", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEvent\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,\u0060\u00601)", + "position": "parameter:timeoutMs", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.CopyTo(System.Array,System.Int32)", + "position": "parameter:startIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsReadyEventArgs.#ctor(System.Int32)", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Genepool.FindIndex(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Genepool.Get(System.Int32)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridLayer.ContainsRegion(System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridLayer.ContainsRegion(System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridRegion.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Group.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupAccountSummary(LibreMetaverse.UUID,System.Int32,System.Int32)", + "position": "parameter:currentInterval", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupAccountSummary(LibreMetaverse.UUID,System.Int32,System.Int32)", + "position": "parameter:intervalDays", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.SetGroupContribution(LibreMetaverse.UUID,System.Int32)", + "position": "parameter:contribution", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:creationDate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:salePrice", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SplitBy(System.String,System.Int32)", + "position": "parameter:chunkLength", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEGlowFloat(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEOffsetFloat(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TERotationFloat(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroDecode(System.Byte[],System.Int32,System.Byte[])", + "position": "parameter:srclen", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroDecode(System.Byte[],System.Int32,System.Byte[])", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroEncode(System.Byte[],System.Int32,System.Byte[])", + "position": "parameter:srclen", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.ZeroEncode(System.Byte[],System.Int32,System.Byte[])", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "parameter:retries", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "parameter:maxSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImageReceiveProgressEventArgs.#ctor(LibreMetaverse.UUID,System.Int32,System.Int32)", + "position": "parameter:received", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImageReceiveProgressEventArgs.#ctor(LibreMetaverse.UUID,System.Int32,System.Int32)", + "position": "parameter:total", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImageRequest.#ctor(LibreMetaverse.UUID,LibreMetaverse.ImageType,System.Single,System.Int32)", + "position": "parameter:discardLevel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.#ctor(System.Int32,System.Int32,LibreMetaverse.Imaging.ManagedImage.ImageChannels)", + "position": "parameter:height", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.#ctor(System.Int32,System.Int32,LibreMetaverse.Imaging.ManagedImage.ImageChannels)", + "position": "parameter:width", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeBilinear(System.Int32,System.Int32)", + "position": "parameter:height", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeBilinear(System.Int32,System.Int32)", + "position": "parameter:width", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeNearestNeighbor(System.Int32,System.Int32)", + "position": "parameter:height", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeNearestNeighbor(System.Int32,System.Int32)", + "position": "parameter:width", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.Create(System.Int32,System.Int32,System.Int32,System.Byte[])", + "position": "parameter:height", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.Create(System.Int32,System.Int32,System.Int32,System.Byte[])", + "position": "parameter:numComponents", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.Create(System.Int32,System.Int32,System.Int32,System.Byte[])", + "position": "parameter:width", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.IncomingPacketIDCollection.#ctor(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Interfaces.IByteBufferPool.LeaseBytes(System.Int32)", + "position": "parameter:minSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RestoreFromDisk(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RestoreFromDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:depth", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:depth", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:depth", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryBase.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:confirmCost", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.LocalFind(LibreMetaverse.UUID,System.String[],System.Int32,System.Boolean)", + "position": "parameter:level", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LandPatchReceivedEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.Int32,System.Single[])", + "position": "parameter:patchSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LandPatchReceivedEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.Int32,System.Single[])", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LandPatchReceivedEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.Int32,System.Single[])", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "parameter:maxSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:en", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:en", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:en", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:en", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CommentList.#ctor(System.Int32,System.Int32,LibreMetaverse.LslTools.CommentList)", + "position": "parameter:ln", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CommentList.#ctor(System.Int32,System.Int32,LibreMetaverse.LslTools.CommentList)", + "position": "parameter:st", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.Read", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.Read(System.Char[],System.Int32,System.Int32)", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.Read(System.Char[],System.Int32,System.Int32)", + "position": "parameter:offset", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.Read(System.Char[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Action.#ctor(System.Int32,LibreMetaverse.LslTools.Dfa.Action)", + "position": "parameter:act", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Match(System.String,System.Int32,System.Int32@)", + "position": "parameter:action", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Match(System.String,System.Int32,System.Int32@)", + "position": "parameter:ix", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Match(System.String,System.Int32,System.Int32@)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:max", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.Error(System.Int32,System.Int32,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.Error(System.Int32,System.Int32,System.String)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.NonWhite(System.String,System.Int32@,System.Int32)", + "position": "parameter:max", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.NonWhite(System.String,System.Int32@,System.Int32)", + "position": "parameter:offset", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.Saypos(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.White(System.String,System.Int32@,System.Int32)", + "position": "parameter:max", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.White(System.String,System.Int32@,System.Int32)", + "position": "parameter:offset", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.line(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.line(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.position(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.position(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.sourceLineInfo(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.GetChar", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Saypos(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.sourceLineInfo(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineList.#ctor(System.Int32,LibreMetaverse.LslTools.LineList)", + "position": "parameter:h", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineList.getpos(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineList.getpos(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.backto(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.comment(System.Int32,System.Int32)", + "position": "parameter:len", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.comment(System.Int32,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.newline(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseStackEntry.#ctor(LibreMetaverse.LslTools.Parser,System.Int32,LibreMetaverse.LslTools.SYMBOL)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Parser.Error(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Parser.StackAt(System.Int32)", + "position": "parameter:ix", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserAction.ActNum", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.ActNum", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserReduce.#ctor(LibreMetaverse.LslTools.ParserAction,System.Int32,LibreMetaverse.LslTools.Production)", + "position": "parameter:depth", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParsingInfo.#ctor(System.String,System.Int32)", + "position": "parameter:num", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Precedence.#ctor(LibreMetaverse.LslTools.Precedence.PrecType,System.Int32,LibreMetaverse.LslTools.Precedence)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.CSymbol,LibreMetaverse.LslTools.Production,System.Int32)", + "position": "parameter:d", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.CSymbol,LibreMetaverse.LslTools.Production,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.Precedence,LibreMetaverse.LslTools.Precedence.PrecType,System.Int32)", + "position": "parameter:d", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.Precedence,LibreMetaverse.LslTools.Precedence.PrecType,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ProdItem.#ctor(LibreMetaverse.LslTools.Production,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.AddFirst(LibreMetaverse.LslTools.CSymbol,System.Int32)", + "position": "parameter:j", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.CouldBeEmpty(System.Int32)", + "position": "parameter:j", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.Prefix(System.Int32)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.StackRef(System.String@,System.Int32,System.Int32)", + "position": "parameter:ch", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.StackRef(System.String@,System.Int32,System.Int32)", + "position": "parameter:ix", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.#ctor(LibreMetaverse.LslTools.TokensGen,System.Int32,System.String)", + "position": "parameter:p", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String,System.Int32,System.Int32)", + "position": "parameter:max", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String,System.Int32,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Pass(LibreMetaverse.LslTools.YyParser,System.Int32,LibreMetaverse.LslTools.ParserEntry@)", + "position": "parameter:snum", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.op_Implicit(LibreMetaverse.LslTools.SYMBOL)~System.Int32", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser.#ctor(System.Int32[])", + "position": "parameter:bb", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser._Read", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser._Write(System.Int32)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.#ctor(LibreMetaverse.LslTools.Lexer,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.#ctor(LibreMetaverse.LslTools.LineManager,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.#ctor(System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.AssocType(LibreMetaverse.LslTools.Precedence.PrecType,System.Int32)", + "position": "parameter:n", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.Pass(LibreMetaverse.LslTools.YyParser,System.Int32,LibreMetaverse.LslTools.ParserEntry@)", + "position": "parameter:snum", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokensGen.NewState", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "position": "parameter:action", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.Action(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.SYMBOL,System.Int32)", + "position": "parameter:yyact", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.GetSymbolInfo(System.String,System.Int32)", + "position": "parameter:num", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Action(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.SYMBOL,System.Int32)", + "position": "parameter:yyact", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "position": "parameter:action", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MapBlock.CompareTo(System.Object)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MapField.CompareTo(System.Object)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceFolderClassifier.GetStockCount(LibreMetaverse.UUID,LibreMetaverse.Inventory)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs.#ctor(System.Int32,LibreMetaverse.Marketplace.MarketplaceListing)", + "position": "parameter:listingId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.ActivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:listingId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.CreateListingAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:countOnHand", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeactivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:listingId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeleteListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:listingId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.TryGetById(System.Int32,LibreMetaverse.Marketplace.MarketplaceListing@)", + "position": "parameter:listingId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Minor(LibreMetaverse.Matrix4,System.Int32,System.Int32)", + "position": "parameter:col", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Minor(LibreMetaverse.Matrix4,System.Int32,System.Int32)", + "position": "parameter:row", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MoneyBalanceReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32,System.Int32,System.String,LibreMetaverse.TransactionInfo)", + "position": "parameter:balance", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MoneyBalanceReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32,System.Int32,System.String,LibreMetaverse.TransactionInfo)", + "position": "parameter:metersCommitted", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MoneyBalanceReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32,System.Int32,System.String,LibreMetaverse.TransactionInfo)", + "position": "parameter:metersCredit", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "parameter:maxSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600})", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Collections.Generic.IEqualityComparer{\u00600},System.Func{\u0060\u00600})", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Create\u0060\u00601(System.Int32,System.Func{\u0060\u00600})", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.StartLocation(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.StartLocation(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.StartLocation(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:z", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ApplyMaterialAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "parameter:side", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.BuyObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "parameter:price", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClearMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:side", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:faceIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.NavigateObjectMediaAsync(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:face", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "parameter:side", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.SaleType,System.Int32)", + "position": "parameter:price", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32)", + "position": "parameter:price", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.#ctor(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketSentEventArgs.#ctor(System.Byte[],System.Int32,LibreMetaverse.Simulator)", + "position": "parameter:bytesSent", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.AcksToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.BuildHeader(System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.BuildHeader(System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.FromBytes(System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.FromBytes(System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(System.Byte[],System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketDecoder.MessageToString(System.Object,System.Int32)", + "position": "parameter:recurseLevel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "parameter:packetEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.#ctor(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "parameter:i", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytes(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32@)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.ToBytesMultiple(LibreMetaverse.Interfaces.IByteBufferPool,System.Int32[]@)", + "position": "parameter:sizes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Parcel.#ctor(System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelAccessListReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.UInt32,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelAccessEntry})", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelAccessListReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.UInt32,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelAccessEntry})", + "position": "parameter:sequenceID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelDwellReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int32,System.Single)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelEnvironmentEventArgs.#ctor(System.Int32,LibreMetaverse.Messages.Linden.ExtEnvironmentMessage)", + "position": "parameter:parcelId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:parcelArea", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:parcelPrice", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.DeedToGroup(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.UUID)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.GetParcelLocalID(LibreMetaverse.Simulator,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Reclaim(LibreMetaverse.Simulator,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ReleaseParcel(LibreMetaverse.Simulator,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestDwell(LibreMetaverse.Simulator,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestObjectOwners(LibreMetaverse.Simulator,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelAccessList(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.AccessList,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelAccessList(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.AccessList,System.Int32)", + "position": "parameter:sequenceID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Int32,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Int32,System.Int32)", + "position": "parameter:sequenceID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "parameter:sequenceID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestSelectObjects(System.Int32,LibreMetaverse.ObjectReturnType,LibreMetaverse.UUID)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ReturnObjects(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.ObjectReturnType,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.StartAuction(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.UUID)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "parameter:seconds", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:localID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:seconds", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelPropertiesEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Parcel,LibreMetaverse.ParcelResult,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:selectedPrims", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelPropertiesEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Parcel,LibreMetaverse.ParcelResult,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:sequenceID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParticleSimulator.#ctor(LibreMetaverse.Primitive.ParticleSystem,System.Int32)", + "position": "parameter:seed", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PayPriceReplyEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Int32[])", + "position": "parameter:buttonPrices", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PayPriceReplyEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Int32[])", + "position": "parameter:defaultPrice", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:z", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:z", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32)", + "position": "parameter:v1", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32)", + "position": "parameter:v2", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32)", + "position": "parameter:v3", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:n1", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:n2", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:n3", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:v1", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:v2", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Face.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:v3", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Path.Create(LibreMetaverse.PrimMesher.PathType,System.Int32)", + "position": "parameter:steps", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32)", + "position": "parameter:hollowSides", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32)", + "position": "parameter:sides", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.SurfaceNormal(System.Int32)", + "position": "parameter:faceIndex", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:hollowSides", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:sides", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddValue2FaceNormalIndices(System.Int32)", + "position": "parameter:num", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddValue2FaceVertexIndices(System.Int32)", + "position": "parameter:num", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMap.#ctor(LibreMetaverse.Imaging.ManagedImage,System.Int32)", + "position": "parameter:lod", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "position": "parameter:lod", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(LibreMetaverse.Imaging.ManagedImage,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:lod", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:invert", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:lod", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:mirror", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:sculptType", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:viewerMode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.SculptMeshFromFile(System.String,LibreMetaverse.Imaging.ITextureCodec,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "position": "parameter:lod", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.#ctor(System.Int32)", + "position": "parameter:primFaceNumber", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerPolygon.#ctor(System.Int32,System.Int32,System.Int32)", + "position": "parameter:v1", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerPolygon.#ctor(System.Int32,System.Int32,System.Int32)", + "position": "parameter:v2", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerPolygon.#ctor(System.Int32,System.Int32,System.Int32)", + "position": "parameter:v3", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ConstructionData.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.FlexibleData.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.FlexibleData.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightData.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightData.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightImage.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightImage.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SculptData.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SculptData.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SetExtraParamsFromBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.SetExtraParamsFromBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:length", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.#ctor(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.FromOSD(LibreMetaverse.StructuredData.OSD,LibreMetaverse.Primitive.TextureEntryFace,System.Int32@)", + "position": "parameter:faceNumber", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.GetOSD(System.Int32)", + "position": "parameter:faceNumber", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.FromBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChat(System.Int32,System.String)", + "position": "parameter:channel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirChatChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetRedirEmoteChannels(System.Collections.Generic.IReadOnlyList{System.Int32}@)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetWearableParams(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:visualParams", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.Tick(System.Single)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadInt32", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadString(System.Int32)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.ComputeBoneTransforms(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:paramValues", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.GetAttachmentPoint(System.Int32)", + "position": "parameter:id", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadLodMesh(System.Int32,System.String)", + "position": "parameter:level", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadReferenceMesh(System.Int32,System.String)", + "position": "parameter:lodLevel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:drivenWeights", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:vpWeights", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:j0", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:j1", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:j2", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:j3", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:jointCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:chatChannel", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SetDisplayNameReplyEventArgs.#ctor(System.Int32,System.String,LibreMetaverse.AgentDisplayName)", + "position": "parameter:status", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimParcelsDownloadedEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Concurrent.ConcurrentDictionary{System.Int32,LibreMetaverse.Parcel},System.Int32[0:,0:])", + "position": "parameter:parcelMap", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimParcelsDownloadedEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Concurrent.ConcurrentDictionary{System.Int32,LibreMetaverse.Parcel},System.Int32[0:,0:])", + "position": "parameter:simParcels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SendPacketData(System.Byte[],System.Int32,LibreMetaverse.Packets.PacketType,System.Boolean)", + "position": "parameter:dataLength", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetAndIncrementLastPingID", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetConnectTime", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetDroppedPackets", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetIncomingBPS", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetLastPingSent", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetOutgoingBPS", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetReceivedPongs", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetReceivedResends", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetResentPackets", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetSentPings", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetConnectTime(System.Int32)", + "position": "parameter:v", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetIncomingBPS(System.Int32)", + "position": "parameter:v", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetLastPingSent(System.Int32)", + "position": "parameter:v", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetOutgoingBPS(System.Int32)", + "position": "parameter:v", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.TerrainHeightAtPoint(System.Int32,System.Int32,System.Single@)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.TerrainHeightAtPoint(System.Int32,System.Int32,System.Single@)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetTeleportUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetTeleportUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetTeleportUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:z", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetWorldMapUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetWorldMapUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetWorldMapUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:z", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsInteger", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Int32", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Int32)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.#ctor(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.CopyTo(LibreMetaverse.StructuredData.OSD[],System.Int32)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.IndexOf(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Insert(System.Int32,LibreMetaverse.StructuredData.OSD)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.RemoveAt(System.Int32)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsInteger", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsInteger", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.#ctor(System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsInteger", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.#ctor(System.Int32)", + "position": "parameter:capacity", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.CopyTo(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD}[],System.Int32)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.BufferCharactersEqual(System.IO.StringReader,System.Char[],System.Int32)", + "position": "parameter:offset", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.BufferCharactersEqual(System.IO.StringReader,System.Char[],System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ConsumeBytes(System.IO.Stream,System.Int32)", + "position": "parameter:consumeBytes", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetLengthInBrackets(System.IO.StringReader)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.HostToNetworkIntBytes(System.Int32)", + "position": "parameter:intHostEnd", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.NetworkToHostInt(System.Byte[])", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.PeekAndSkipWhitespace(System.IO.StringReader)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.ReadAndSkipWhitespace(System.IO.StringReader)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsInteger", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsInteger", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[0:,0:],System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[0:,0:],System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32[])", + "position": "parameter:patches", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:x", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:y", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatch(System.Int32[],LibreMetaverse.BitPack,LibreMetaverse.TerrainPatch.Header,System.Int32)", + "position": "parameter:patches", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatch(System.Int32[],LibreMetaverse.BitPack,LibreMetaverse.TerrainPatch.Header,System.Int32)", + "position": "parameter:size", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.DecompressPatch(System.Int32[],LibreMetaverse.TerrainPatch.Header,LibreMetaverse.TerrainPatch.GroupHeader)", + "position": "parameter:patches", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainPatch.Header.setPatchIDs(System.Int32,System.Int32)", + "position": "parameter:xx", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainPatch.Header.setPatchIDs(System.Int32,System.Int32)", + "position": "parameter:yy", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainPatch.Header.setPatchIDs(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne(System.Int32)", + "position": "parameter:millisecondsTimeout", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne(System.Int32)", + "position": "parameter:millisecondsTimeout", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne(System.Int32)", + "position": "parameter:millisecondsTimeout", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.#ctor(System.Int32)", + "position": "parameter:availableCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Enter(System.Int32)", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Exit(System.Int32)", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.#ctor(LibreMetaverse.TokenBucket,System.Int32,System.Int32)", + "position": "parameter:dripRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.#ctor(LibreMetaverse.TokenBucket,System.Int32,System.Int32)", + "position": "parameter:maxBurst", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TokenBucket.RemoveTokens(System.Int32,System.Boolean@)", + "position": "parameter:amount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TopCollidersReplyEventArgs.#ctor(System.Int32,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.EstateTask})", + "position": "parameter:objectCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.TopScriptsReplyEventArgs.#ctor(System.Int32,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.EstateTask})", + "position": "parameter:objectCount", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Byte[],System.Int32,System.Net.IPEndPoint,System.Int32)", + "position": "parameter:bufferSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Byte[],System.Int32,System.Net.IPEndPoint,System.Int32)", + "position": "parameter:category", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.#ctor(System.Net.IPEndPoint,System.Int32)", + "position": "parameter:bufferSize", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array,System.Int32)", + "position": "parameter:length", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.CompareTo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.#ctor(LibreMetaverse.GridClient,System.Int32)", + "position": "parameter:timerFrequency", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32)", + "position": "parameter:cps", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.ChatAsync(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cps", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToDouble(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToFloat(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.Int32,System.String)", + "position": "parameter:length", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[])", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt16(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:count", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[],System.Int32,System.Int32)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Int32,System.Int32,System.Int32)", + "position": "parameter:max", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Int32,System.Int32,System.Int32)", + "position": "parameter:min", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Int32,System.Int32,System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytesBig(System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ReadDoubleLittleEndian(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ReadSingleLittleEndian(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Round(System.Single)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytesBig(System.UInt16,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytesBig(System.UInt32,System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UnixTimeToDateTime(System.Int32)", + "position": "parameter:timestamp", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteDoubleLittleEndian(System.Byte[],System.Int32,System.Double)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteSingleLittleEndian(System.Byte[],System.Int32,System.Single)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.CompareTo(LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.CompareTo(LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.CompareTo(LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.CompareTo(LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.FromBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ToBytes(System.Byte[],System.Int32)", + "position": "parameter:pos", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:drivers", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:group", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:paramID", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.Connect(System.String,System.Int32)", + "position": "parameter:port", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:ParticipantPropertyFrequency", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState)", + "position": "parameter:StatusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogout(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.#ctor(System.Boolean,System.Single,System.Int32,System.Int32)", + "position": "parameter:MicVolume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.#ctor(System.Boolean,System.Single,System.Int32,System.Int32)", + "position": "parameter:SpeakerVolume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxCaptureAudioStart(System.Int32)", + "position": "parameter:duration", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxCaptureAudioStart(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxCaptureAudioStop", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxGetCaptureDevices", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxGetRenderDevices", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetCaptureDevice(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetMicLevel(System.Int32)", + "position": "parameter:level", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetMicLevel(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetRenderDevice(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetSpeakerLevel(System.Int32)", + "position": "parameter:level", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetSpeakerLevel(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectToDaemon(System.String,System.Int32)", + "position": "parameter:port", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorCreate(System.String,System.String,System.UInt16,System.UInt16,LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorInitiateShutdown(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalMic(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalSpeaker(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalMicVolume(System.String,System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalMicVolume(System.String,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalSpeakerVolume(System.String,System.Int32)", + "position": "parameter:value", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalSpeakerVolume(System.String,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:Volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "position": "parameter:StatusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String,System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionConnect(System.String,System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStart(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStop(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSet3DPosition(System.String,LibreMetaverse.Voice.Vivox.VoicePosition,LibreMetaverse.Voice.Vivox.VoicePosition)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSetParticipantVolumeForMe(System.String,System.String,System.Int32)", + "position": "parameter:Volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSetParticipantVolumeForMe(System.String,System.String,System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "position": "parameter:StatusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionTerminate(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:Volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:rcode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:scode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String,System.String)", + "position": "parameter:rcode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String,System.String)", + "position": "parameter:scode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:rcode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:scode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String)", + "position": "parameter:rcode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String)", + "position": "parameter:scode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:rcode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:scode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.BeginInvoke(System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.Invoke(System.Int32,System.Single)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.Invoke(System.Int32,System.Int32,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.Invoke(System.Int32,System.Int32,System.String)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectToDaemon(System.String,System.Int32)", + "position": "parameter:port", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CreateConnector(System.Int32@)", + "position": "parameter:status", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Login(System.String,System.String,System.String,System.Int32@)", + "position": "parameter:status", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:localId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.Invoke(System.String,System.Int32,System.String)", + "position": "parameter:localId", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:participantType", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:participantType", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCaptureDevices", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCreateConnector", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCreateConnector(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestLogin(System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderAudioStart(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderAudioStop", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderDevices", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetCaptureVolume(System.Int32)", + "position": "parameter:volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetCaptureVolume(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetRenderDevice(System.String)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetSpeakerVolume(System.Int32)", + "position": "parameter:volume", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetSpeakerVolume(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestStartTuningMode(System.Int32)", + "position": "parameter:duration", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestStartTuningMode(System.Int32)", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestStopTuningMode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:cookie", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:state", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:statusCode", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayRawFile(System.String,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:channels", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayRawFile(System.String,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:sampleRate", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetGroupVoicePeerGain(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32)", + "position": "parameter:gain", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetP2PCallGain(LibreMetaverse.UUID,System.Int32)", + "position": "parameter:gain", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetPeerGain(LibreMetaverse.UUID,System.Int32)", + "position": "parameter:gain", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SendGainMap(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Int32})", + "position": "parameter:gainMap", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.SetPeerGain(LibreMetaverse.UUID,System.Int32)", + "position": "parameter:gain", + "signature": "System.Int32" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.GetHashCode", + "position": "return_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AISResponseMeta.CategoryVersionUpdates", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.AnimatedObjectLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.AnimationUploadCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.AttachmentLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.BetaGridLand", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.CreateGroupCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.CreateRepeatingEvents", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.GridwideExperienceLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.GroupMembershipLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LandAuctionsAllowed", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LargeTextureUploadCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LastnameChangeAllowed", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LastnameChangeRate", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LiveChat", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.LocalExperiences", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.MainlandTier", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.MarketplaceConciergeSupport", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.MarketplaceListingLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.MarketplacePleLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.MeshUploadCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.ObjectAccountLevel", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.OneTimeEventAllowed", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.OneTimeEventCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PartnerFee", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PhoneSupport", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PicksLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PlacePages", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PremiumAccess", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PremiumAlts", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PremiumGifts", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.PriorityEntry", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.RepeatingEventsCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.ScriptLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.SignupBonus", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.SoundUploadCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.Stipend", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.StoredImLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.TextureUploadCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.TransactionHistoryLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.UnpartnerFee", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.UseAnimesh", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.VoiceMorphing", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.UpdateInterval", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.Balance", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AnimationsChangedEventArgs.Animations", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Animesh.AnimeshPlayer.TrackCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Appearance.CurrentOutfitFolder.MaxClothingLayers", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.ItemsCopied", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.TotalItems", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AppearanceManager.LastUpdateReceivedCOFVersion", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ArchetypeParam.Id", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.BufferView", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ByteOffset", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ComponentByteSize", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.ComponentCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.DefaultStride", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationChannel.Sampler", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget.Node", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationSampler.Input", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimationSampler.Output", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.ByteLength", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.Buffer", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.ByteLength", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.ByteOffset", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.ByteStride", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.Target", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.DefaultScene", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.BufferView", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Children", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Mesh", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Skin", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Attributes", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Indices", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Material", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfScene.Nodes", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.InverseBindMatrices", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Joints", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Skeleton", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTexture.Sampler", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTexture.Source", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTextureRef.Index", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTextureRef.TexCoord", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.COFVersion", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarAppearanceEventArgs.ChildCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.BalanceEventArgs.Balance", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.BitPack.BitPos", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.BitPack.BytePos", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.CacheDictionary\u00602.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.QueueLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.TokenLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.TokensPerPeriod", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.DoubleDictionary\u00603.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateBansReplyEventArgs.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateGroupsReplyEventArgs.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateManagersReplyEventArgs.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.SunHour", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateUsersReplyEventArgs.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ExpiringCache\u00602.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendsReadyEventArgs.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.GLTFMaterialUpdate.Side", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.GrassDefinition.SpeciesId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupManager.CurrentGroupCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupManager.GroupMembershipLimit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Http.DownloadManager.ParallelDownloads", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImageReceiveProgressEventArgs.Received", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImageReceiveProgressEventArgs.Total", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Imaging.Baker.BakeHeight", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Imaging.Baker.BakeWidth", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Inventory.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryFolder.DescendentCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryFolder.Version", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryItem.SalePrice", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryNodeDictionary.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.PatchSize", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.X", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.Y", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.CircuitCode", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.MaxAgentGroups", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.NextDuration", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.SecondsSinceEpoch", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ANY.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.BASE.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.BaseCall.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.COLON.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Call.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ClassBody.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Cons.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.EOF.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.GStuff.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ID.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Item.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.LBRACE.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.LBRACK.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.LPAREN.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Lexer.yypos", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.NEW.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Name.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ObjectList.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ObjectList.Item(System.Int32)", + "position": "parameter:ix", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.RBRACE.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.RBRACK.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.RPAREN.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SEMICOLON.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SYMBOL.Line", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SYMBOL.Position", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Stuff.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SymbolSet.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.THIS.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.TOKEN.yynum", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.ListingId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.StockCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListingChangedEventArgs.ListingId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceManager.ListingsById", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Matrix4.Item(System.Int32)", + "position": "parameter:row", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Matrix4.Item(System.Int32,System.Int32)", + "position": "parameter:column", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Matrix4.Item(System.Int32,System.Int32)", + "position": "parameter:row", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.DayLength", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.EnvironmentData.DayOffset", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.ParcelId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Version", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.Balance", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.MetersCommitted", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.MetersCredit", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.MultiValueDictionary\u00602.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.InboxCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.MaxAgentGroups", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.OutboxCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ObservableDictionary\u00602.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.PacketSentEventArgs.SentBytes", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AbortXferPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGesturesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ActivateGroupPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AddCircuitCodePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAlertMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDataUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentDropGroupPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentFOVPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentHeightWidthPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentPausePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentQuitCopyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentResumePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentSitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AlertMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AssetUploadCompletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AssetUploadRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AtomicPassObjectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AttachedSoundGainChangePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AttachedSoundPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarNotesUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPickerRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPicksReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BulkUpdateInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.BuyObjectInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CameraConstraintPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CancelAuctionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromSimulatorPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatFromViewerPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChatPassPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CheckParcelAuctionsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CheckParcelSalesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentAlivePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentDyingPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUnknownPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedDeletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedGodDeletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CloseCircuitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompleteAgentMovementPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompleteAuctionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompletePingCheckPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmAuctionStartPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmXferPacketPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CopyInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateGroupRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryFolderPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateLandmarkForEventPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CreateTrustedCircuitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataHomeLocationRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataServerLogoutPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezAckPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeactivateGesturesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DenyTrustedCircuitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DerezContainerPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.DisableSimulatorPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EconomyDataPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EconomyDataRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EdgeDataPacketPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EjectUserPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EmailMessageReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EmailMessageRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EnableSimulatorPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ErrorPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ErrorPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateCovenantReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateCovenantRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventInfoRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationAddRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FeatureDisabledPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FetchInventoryReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceObjectSelectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ForceScriptControlReleasePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FormFriendshipPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.FreezeUserPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GameControlInputPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GetScriptRunningPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodKickUserPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantGodlikePowersPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupDataUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupMembersRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticeRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupNoticesListRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProfileRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleDataRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitleUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupTitlesRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.HealthMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageDataPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImageNotInDatabasePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImagePacketPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InitiateDownloadPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InternalScriptMailPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryAssetResponsePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InventoryDescendentsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.InviteGroupResponsePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.JoinGroupRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserAckPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KillChildAgentsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KillObjectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LayerDataPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LeaveGroupRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LinkInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LoadURLPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LoadURLPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogDwellTimePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogTextMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.LogoutRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapLayerRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MeanCollisionAlertPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferBackendPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryFolderPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MoveTaskInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NeighborListPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NetTestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectFlagUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfferCallingCardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OfflineNotificationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OnlineNotificationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.OpenCircuitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.Packet.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PacketAckPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PacketBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAuctionsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDeedToGroupPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelDwellRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelInfoRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelMediaUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelOverlayPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReclaimPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReleasePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelRenamePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSalesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickDeletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickGodDeletePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PickInfoUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PreloadSoundPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RedoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandleRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceResponsePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveAttachmentPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryFolderPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveParcelPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RemoveTaskInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ReplyTaskInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ReportAutosaveCrashPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestInventoryAssetPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestPayPricePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestRegionInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestTaskInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestTrustedCircuitPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestXferPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RevokePermissionsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezRestoreToWorldPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcChannelReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcChannelRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptAnswerYesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptControlChangePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDataReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDataRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptDialogReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptMailRegistrationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptQuestionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptRunningReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendPostcardPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetAlwaysRunPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetCPURatioPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetGroupContributionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatsPacket.StatBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimWideDeletesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorMapUpdatePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorSetMapPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SoundTriggerPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartLurePacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartLurePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartPingCheckPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.StateSavePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SubscribeLoadPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemKickUserPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TallyVotesPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportCancelPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFailedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportFinishPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocalPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLocationRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportLureRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportProgressPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TeleportStartPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TerminateFriendshipPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferAbortPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryAckPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferPacketPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDNameReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDNameRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoLandPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UnsubscribeLoadPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateGroupInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryFolderPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateInventoryItemPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateParcelPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateSimulatorPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UseCachedMuteListPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UseCircuitCodePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserInfoRequestPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportInternalPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOffPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.VelocityInterpolateOnPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerEffectPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerFrozenMessagePacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Length", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.LocalID", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.SequenceID", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelDwellReplyEventArgs.LocalID", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelEnvironmentEventArgs.ParcelId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.SelectedPrims", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelPropertiesEventArgs.SequenceID", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.PayPriceReplyEventArgs.ButtonPrices", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.PayPriceReplyEventArgs.DefaultPrice", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.ProfileHollowFaceNumber", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimMesher.PrimMesh.ProfileOuterFaceNumber", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Group", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Id", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.LodLevel", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.MinPixelWidth", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.LodMeshes", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumRemaps", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.Channel", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.SetDisplayNameReplyEventArgs.Status", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Settings.UploadCost", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.SimParcelsDownloadedEventArgs.ParcelMap", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.SimParcelsDownloadedEventArgs.Parcels", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.ParcelMap", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.Parcels", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.ActiveScripts", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.Agents", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.ChildAgents", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.FPS", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.INPPS", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.LSLIPS", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.LastLag", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.MissedPings", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.OUTPPS", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.Objects", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.PendingDownloads", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.PendingLocalUploads", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.PendingUploads", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.ResidentSize", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.ScriptedObjects", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.UnackedBytes", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.VirtualSize", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.X", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.Y", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.Z", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDArray.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDArray.Item(System.Int32)", + "position": "parameter:index", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Count", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TerrainPatch.Header.X", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TerrainPatch.Header.Y", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TexturePipeline.TransferCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TokenBucket.Content", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TokenBucket.DripRate", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TokenBucket.MaxBurst", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TopCollidersReplyEventArgs.ObjectCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TopScriptsReplyEventArgs.ObjectCount", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Transfer.TimeSinceLastPacket", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.Depth", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.RepeatZ", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.SpeciesId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.MicLevel", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.RequestId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.SpkrLevel", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.Volume", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.ParcelLocalId", + "position": "property_type", + "signature": "System.Int32" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.Power", + "position": "property_type", + "signature": "System.Int32" + } + ] + }, + { + "doc_id": "T:System.Int64", + "signature": "System.Int64", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.AssetCacheSettings.MaxSize", + "position": "field_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.BeginInvoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.BeginInvoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.Invoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.Invoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.LoadObjects(System.Byte[],LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,System.Int64,System.Int64)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.LoadObjects(System.Byte[],LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,System.Int64,System.Int64)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.BeginInvoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.BeginInvoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.Invoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.Invoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.Invoke(System.Single[0:,0:],System.Int64,System.Int64)", + "position": "parameter:bytesRead", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.Invoke(System.Single[0:,0:],System.Int64,System.Int64)", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateCovenantReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int64,System.String,LibreMetaverse.UUID)", + "position": "parameter:timestamp", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.ProgressReport.#ctor(System.Nullable{System.Int64},System.Int64,System.Nullable{System.Double})", + "position": "parameter:bytesTransferred", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.ProgressReport.#ctor(System.Nullable{System.Int64},System.Int64,System.Nullable{System.Double})", + "position": "parameter:totalBytes", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Int64[])", + "position": "parameter:values", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertLongArray(System.String)", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadInt64", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.AddRecvBytes(System.Int64)", + "position": "parameter:v", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.AddSentBytes(System.Int64)", + "position": "parameter:v", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetRecvBytes", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetRecvPackets", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetSentBytes", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.GetSentPackets", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromLong(System.Int64)", + "position": "parameter:value", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Int64", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Int64)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.Int64)", + "position": "parameter:value", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsLong", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[])", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToInt64(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64)", + "position": "parameter:value", + "signature": "System.Int64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateCovenantReplyEventArgs.Timestamp", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.BytesTransferred", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.TotalBytes", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask.value", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.Values", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.RxBytes", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.RxCount", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.TxBytes", + "position": "property_type", + "signature": "System.Int64" + }, + { + "owner_doc_id": "P:LibreMetaverse.Stats.UtilizationStatistics.Stat.TxCount", + "position": "property_type", + "signature": "System.Int64" + } + ] + }, + { + "doc_id": "T:System.IntPtr", + "signature": "System.IntPtr", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Func.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:method", + "signature": "System.IntPtr" + } + ] + }, + { + "doc_id": "T:System.MulticastDelegate", + "signature": "System.MulticastDelegate", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.AssetLoadedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Caps.EventQueueCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryChangeCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient.ConnectedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient.EventCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Logger.LogCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.AddToFunc", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Builder", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Func", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Relation", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SCreator", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.TCreator", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.LoginResponseCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback", + "position": "base_type", + "signature": "System.MulticastDelegate" + } + ] + }, + { + "doc_id": "T:System.Nullable\u00601", + "signature": "System.Nullable\u003CT\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CaptionIndex", + "position": "field_type", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.HideAge", + "position": "field_type", + "signature": "System.Nullable\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.AlphaParams", + "position": "field_type", + "signature": "System.Nullable\u003CLibreMetaverse.VisualAlphaParam\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.ColorParams", + "position": "field_type", + "signature": "System.Nullable\u003CLibreMetaverse.VisualColorParam\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.GetEventInfoAsync(System.UInt32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Nullable\u003CLibreMetaverse.DirectoryManager.EventInfo\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.String,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Nullable\u003CLibreMetaverse.GridRegion\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.UInt64,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Nullable\u003CLibreMetaverse.GridRegion\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.ProgressReport.#ctor(System.Nullable{System.Int64},System.Int64,System.Nullable{System.Double})", + "position": "parameter:percent", + "signature": "System.Nullable\u003CSystem.Double\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.ProgressReport.#ctor(System.Nullable{System.Int64},System.Int64,System.Nullable{System.Double})", + "position": "parameter:totalBytes", + "signature": "System.Nullable\u003CSystem.Int64\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UploadThumbnailAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Nullable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.ShutdownAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)", + "position": "parameter:timeout", + "signature": "System.Nullable\u003CSystem.TimeSpan\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:x", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:y", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:z", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:x", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:y", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:z", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:lookat", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:attachedPrimId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:attachmentPoint", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.FindFoldersContaining(System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:wearableType", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:lookat", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCommon.TryGetAttachmentPointFromItemName(System.String,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint}@)", + "position": "parameter:attachmentPoint", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:attachedPrimId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:attachedTo", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:externalFolderId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:gestureState", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvGestureState\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:wornOn", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:attachmentPoint", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:objectFolderId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanAttach(System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:wearableType", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:attachmentPoint", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:folderId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:itemId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:primId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanDetach(System.Nullable{System.Guid},System.Nullable{System.Guid},System.Nullable{System.Guid},System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{LibreMetaverse.RLV.RlvWearableType})", + "position": "parameter:wearableType", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanEdit(LibreMetaverse.RLV.RlvPermissionsService.ObjectLocation,System.Nullable{System.Guid})", + "position": "parameter:objectId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShare(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowHoverText(LibreMetaverse.RLV.RlvPermissionsService.HoverTextLocation,System.Nullable{System.Guid})", + "position": "parameter:objectId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNameTags(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanShowNames(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTPLure(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "position": "parameter:distance", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpRequest(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTp(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.IsAutoAcceptTpRequest(System.Nullable{System.Guid})", + "position": "parameter:userId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.FindRestrictions(System.String,System.Nullable{System.Guid})", + "position": "parameter:senderFilter", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:objectId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportUnsitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:objectId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:attachedPrimId", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:attachedTo", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:gestureState", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvGestureState\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:wornOn", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:alpha", + "signature": "System.Nullable\u003CLibreMetaverse.VisualAlphaParam\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:colorParams", + "signature": "System.Nullable\u003CLibreMetaverse.VisualColorParam\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetP2PCallInfo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Nullable\u003CSystem.DateTime\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Matrix", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.Matrix4\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GLTFMaterialUpdate.AssetId", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupManager.CanJoinMoreGroups", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.Percent", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Double\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.HttpCapsClient.ProgressReport.TotalBytes", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Int64\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDist", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDistMax", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDistMin", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawAlphaMax", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawAlphaMin", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawColor", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Numerics.Vector3\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawMax", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawMin", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.FovMax", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.FovMin", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.Texture", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.ZoomMax", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.ZoomMin", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Single\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.AttachedPrimId", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.AttachedTo", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvAttachmentPoint\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.FolderId", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Guid\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.GestureState", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvGestureState\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.WornOn", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.RLV.RlvWearableType\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.ListenerHeading", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int4\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.ListenerPosition", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int3\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.SenderHeading", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int4\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition.SenderPosition", + "position": "property_type", + "signature": "System.Nullable\u003CLibreMetaverse.Voice.WebRTC.VoiceSession.Int3\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.JoinedPrimary", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.ModeratorMuted", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.Power", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState.VoiceActive", + "position": "property_type", + "signature": "System.Nullable\u003CSystem.Boolean\u003E" + } + ] + }, + { + "doc_id": "T:System.Numerics.Matrix4x4", + "signature": "System.Numerics.Matrix4x4", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.InvBindMatrices", + "position": "field_type", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.BuildBoneWorldMatrices(LibreMetaverse.Rendering.LindenSkeleton,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "return_type", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "return_type", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:result", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "return_type", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:result", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.StripScale(System.Numerics.Matrix4x4)", + "position": "parameter:m", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.StripScale(System.Numerics.Matrix4x4)", + "position": "return_type", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.BuildInvBindMatrices(LibreMetaverse.Rendering.MeshSkinData)", + "position": "return_type", + "signature": "System.Numerics.Matrix4x4" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.FloatsToMatrix(System.Single[])", + "position": "return_type", + "signature": "System.Numerics.Matrix4x4" + } + ] + }, + { + "doc_id": "T:System.Numerics.Quaternion", + "signature": "System.Numerics.Quaternion", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:rotDeltas", + "signature": "System.Numerics.Quaternion" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:rotDeltas", + "signature": "System.Numerics.Quaternion" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:rotDeltas", + "signature": "System.Numerics.Quaternion" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:rotDeltas", + "signature": "System.Numerics.Quaternion" + } + ] + }, + { + "doc_id": "T:System.Numerics.Vector3", + "signature": "System.Numerics.Vector3", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.JointPositionOverrides", + "position": "field_type", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetBonePositionProvider(System.Func{System.String,System.Numerics.Vector3})", + "position": "parameter:getBoneWorldPos", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "return_type", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.#ctor(System.String,System.Numerics.Vector3)", + "position": "parameter:PosDelta", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Deconstruct(System.String@,System.Numerics.Vector3@)", + "position": "parameter:PosDelta", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.ExtractJointPositionOverrides(LibreMetaverse.Rendering.MeshSkinData)", + "position": "return_type", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawColor", + "position": "property_type", + "signature": "System.Numerics.Vector3" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.PosDelta", + "position": "property_type", + "signature": "System.Numerics.Vector3" + } + ] + }, + { + "doc_id": "T:System.Object", + "signature": "System.Object", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.LslTools.SYMBOL.m_dollar", + "position": "field_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "F:LibreMetaverse.NameValue.Value", + "position": "field_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.Tag", + "position": "field_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.UserData", + "position": "field_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "F:LibreMetaverse.binBVHJoint.Tag", + "position": "field_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.BeginInvoke(System.String,LibreMetaverse.UUID,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GltfTextureTransform.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.BeginInvoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.BeginInvoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.BeginInvoke(System.String,LibreMetaverse.Assets.RegionSettings,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.Attachment.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.BeginInvoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatSessionMember.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.BeginInvoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.OnFindAgentReplyHandler(System.Object,LibreMetaverse.PacketReceivedEventArgs)", + "position": "parameter:sender", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridRegion.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Group.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.StructToString(System.Object)", + "position": "parameter:t", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.BeginInvoke(System.String,LibreMetaverse.StructuredData.OSDMap,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImageCreator.ToPortableImageSource(System.Object)", + "position": "parameter:imageObject", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryBase.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.BeginScope(System.Object)", + "position": "parameter:state", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.DebugLog(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient,System.Exception)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,System.Exception)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.BeginInvoke(System.Object,Microsoft.Extensions.Logging.LogLevel,System.AsyncCallback,System.Object)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.BeginInvoke(System.Object,Microsoft.Extensions.Logging.LogLevel,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.Invoke(System.Object,Microsoft.Extensions.Logging.LogLevel)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseScopeAsync(System.Object,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:state", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.String)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.BeginInvoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Charset.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Charset.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Action.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Action.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.EOF.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.EOF.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Func.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Func.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Literal.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Literal.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.Add(System.Object)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.Pop", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.Push(System.Object)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserEntry.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserEntry.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserOldAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserReduce.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserReduce.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserShift.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserShift.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParsingInfo.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParsingInfo.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Relation.BeginInvoke(LibreMetaverse.LslTools.Transition,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ResWds.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ResWds.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.BeginInvoke(LibreMetaverse.LslTools.Parser,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SCreator.Invoke(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser.Deserialise", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser.Serialise(System.Object)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Sfactory.create(System.String,LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.BeginInvoke(LibreMetaverse.LslTools.Lexer,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TCreator.Invoke(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Tfactory.create(System.String,LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokClassDef.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "parameter:o", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokClassDef.Serialise(System.Object,LibreMetaverse.LslTools.Serialiser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.Action(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.SYMBOL,System.Int32)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Action(LibreMetaverse.LslTools.Parser,LibreMetaverse.LslTools.SYMBOL,System.Int32)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_3_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_4_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_4_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_5_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_6_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_6_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.BaseCall_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Call_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.ClassBody_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Cons_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_3_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_4_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_4_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_5_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_6_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_6_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.GStuff_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_10_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_10_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_11_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_12_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_12_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_13_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_14_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_14_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_15_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_16_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_16_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_17_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_18_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_18_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_19_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_20_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_20_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_21_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_22_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_22_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_23_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_24_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_24_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_3_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_4_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_4_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_5_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_6_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_6_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_7_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_8_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_8_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_9_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Item_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_3_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_4_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_4_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Name_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_2_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_2_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_3_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_4_1_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_4_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.Stuff_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0syntax.error_factory(LibreMetaverse.LslTools.Parser)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.ANY_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.BASE_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.COLON_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.ID_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.LBRACE_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.LBRACK_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.LPAREN_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.NEW_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.RBRACE_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.RBRACK_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.RPAREN_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.SEMICOLON_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.THIS_factory(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.MapBlock.CompareTo(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.MapField.CompareTo(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.#ctor(System.String,LibreMetaverse.NameValue.ValueType,LibreMetaverse.NameValue.ClassType,LibreMetaverse.NameValue.SendtoType,System.Object)", + "position": "parameter:value", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketDecoder.MessageToString(System.Object,System.Int32)", + "position": "parameter:message", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ParticleSystem.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureAnimation.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.Clone", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.AttachmentRequest.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.#ctor(LibreMetaverse.RLV.RlvRestrictionType,System.Guid,System.String,System.Collections.Generic.ICollection{System.Object})", + "position": "parameter:args", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadLodMesh(System.Int32,System.String)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.DeserializeMembers(System.Object@,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromObject(System.Object)", + "position": "parameter:value", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.SerializeMembers(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.ToObject(System.Type,LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.BeginInvoke(System.Net.Sockets.SocketException,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.BeginInvoke(System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.BeginInvoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.BeginInvoke(System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.BeginInvoke(System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.BeginInvoke(System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.#ctor(System.Object,System.IntPtr)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:object", + "signature": "System.Object" + }, + { + "owner_doc_id": "M:LibreMetaverse.binBVHJoint.Equals(System.Object)", + "position": "parameter:obj", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ExpiringCache\u00602.Item(\u00600)", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newarray_type.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setarray_type.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_type.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.Items1", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.Items1", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.Items1", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.Items1", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_as_null", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.init_as_target", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.mass_frame", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.Item1", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lightTechnique_common.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.mesh.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common.mass_frame", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.Item1", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment.Items", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.Item", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryNodeDictionary.SyncRoot", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.ClassifiedCategories", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.EventCategories", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.GlobalTextures", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.PremiumPackages", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.UiConfig", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ObjectList.Item(System.Int32)", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ObjectList.OListEnumerator.Current", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ObjectList.Top", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yylval", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvRestriction.Args", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.LodMeshes", + "position": "property_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AccountLevelBenefits", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentDisplayName", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.AgentMovement", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentManager.AgentMovement.AgentCamera", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AgentThrottle", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Animations", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Animesh.AnimationTrack", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Animesh.AnimeshManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Animesh.AnimeshPlayer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AnimeshSkinning", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.CurrentOutfitFolder", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Appearance.InitialOutfitHandler", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManager.TextureData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManager.WearableData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetCache", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetCacheSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.ArchiveConstants", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Asset", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.AssetsArchiver", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GestureStep", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAccessor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationChannel", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationChannelTarget", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfAnimationSampler", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfBuffer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfBufferView", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfDocument", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfImage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfMesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfNode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfPrimitive", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSampler", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfScene", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfSkin", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfTexture", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.Gltf.GltfTextureRef", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.FlexibleBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.InventoryBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.LightBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.ParticlesBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.SculptBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.PrimObject.ShapeBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.RegionSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveReader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarArchiveWriter", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.TarHeader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AudioDevice", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.BinBVHAnimationReader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.BitPack", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CRC32", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Caps", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsEventDictionary", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsRateLimiter", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CapsRateLimiterOptions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ConnectionSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.CoordinateFrame", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.DisposalHelper", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.DisposalHelper.DisposalGuard", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.DoubleDictionary\u00603", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EmptyRemovalStrategy\u00601", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnumInfoExtensions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EnvironmentManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EventSubscriptionHelper", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.EventSubscription\u00601", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ExpiringCache\u00602", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.FileHelper", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Formatters.UUIDFormatter", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.FriendsManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GLTFMaterialUpdate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Genepool", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GrassDefinitions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridClient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridClientBakingTextureProvider", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridClientServiceCollectionExtensions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupVoteMajority", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Helpers", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.HomeInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.DownloadManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.DownloadRequest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImageRequest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.Baker", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.ManagedImageInterleavedExtensions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.Skia.SkiaTextureCodec", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Imaging.Targa", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.COLLADA", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.COLLADAScene", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.IDREF_array", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.InputGlobal", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.InputLocal", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.InputLocalOffset", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.Name_array", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.TargetableFloat", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.TargetableFloat3", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.accessor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.animation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.animation_clip", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.asset", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.assetContributor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.assetUnit", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.bind_material", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.bool_array", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.box", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.camera", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraImager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOptics", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonOrthographic", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cameraOpticsTechnique_commonPerspective", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.capsule", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_connect_param", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_newarray_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_newparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setarray_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_setuser_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGenerator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.channel", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_float_or_param_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.common_newparam_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.controller", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.convex_mesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.cylinder", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effect", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueBlinn", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueConstant", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniqueLambert", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechniquePhong", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_op", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_mode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.ellipsoid", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.extra", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.float_array", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.force_field", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_annotate_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_code_profile", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_include_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_newparam_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_format_hint_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.geometry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_newparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_sampler_state", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_command_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_unit", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_newparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_setparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGenerator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.image", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_controller", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_effect", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_geometry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_material", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_materialBind", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_physics_model", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_body", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShape", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.int_array", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_animation_clips", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_animations", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_cameras", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_controllers", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_effects", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_force_fields", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_geometries", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_images", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_lights", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_materials", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_nodes", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_physics_materials", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_physics_models", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_physics_scenes", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.library_visual_scenes", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.light", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonAmbient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonDirectional", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonPoint", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lightTechnique_commonSpot", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lines", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.linestrips", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.lookat", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.material", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.matrix", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.mesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.morph", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.morphTargets", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.node", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.param", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_material", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_materialTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_model", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_scene", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.physics_sceneTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.plane", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.polygons", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.polygonsPH", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.polylist", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_body", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShape", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraint", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimits", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsLinear", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonLimitsSwing_cone_and_twist", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpring", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringAngular", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonSpringLinear", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.rotate", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.sampler", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.skew", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.skin", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.skinJoints", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.skinVertex_weights", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.source", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.sourceTechnique_common", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.sphere", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.spline", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.splineControl_vertices", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.tapered_capsule", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.tapered_cylinder", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.technique", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.triangles", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.trifans", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.tristrips", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.vertices", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.visual_scene", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.ColladaLoader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.ModelFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.ModelMaterial", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.ModelPrim", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ImportExport.ModelUploader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.IncomingPacketIDCollection", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InterestListManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Inventory", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryAISClient", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryBase", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryManager.CopyItemsResult", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryManager.CreateItemFromAssetResult", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryManager.FolderUpdateResult", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryNode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryNodeDictionary", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LindenAttentions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Logger", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoggingSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginCredential", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginParams", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginResponseData.ParseResult", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LruRemovalStrategy\u00601", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CatTest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Charset", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CommentList", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CsReader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Dfa.Action", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ErrorHandler", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.GenBase", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.LNode", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Lexer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Lexer._Enumerator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.LineList", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.LineManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ObjectList", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ObjectList.OListEnumerator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ParseStackEntry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ParseState", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Parser", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ParserEntry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ParsingInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Path", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Precedence", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ProdItem", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Production", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Regex", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.ResWds", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SYMBOL", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Serialiser", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Sfactory", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SourceLineInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SymbolSet", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SymbolType", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Tfactory", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.TokClassDef", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Transition", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.YyLexer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.YyParser", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MapBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MapField", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MapItem", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MapPacket", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceFolderClassifier", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceListing", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Marketplace.MarketplaceManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Materials.LegacyMaterial", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MediaEntry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentDropGroupMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.AgentData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.NewGroupData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentPreferencesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentProfileMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AssetUploaderBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.AvatarInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.BaseResourcesInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.CrossedRegionMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.DirLandReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnableSimulatorMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EnvironmentData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EventMessageBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.EventQueueGetMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceInfoMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperienceListMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.GetObjectCostMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.GetObjectCostRequest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.InterestListMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.LandResourcesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.LandResourcesRequest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.LandStatReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerMessageBase", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.LayerData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ObjectResourcesDetail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.PrimOwner", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ParcelResourcesDetail", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.PlacesReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.RegionExperiencesMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.RegionInfoMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.RenderMaterialsMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SearchStatRequestBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SearchStatRequestMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SendPostcardMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SetDisplayNameMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.TeleportFailedMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.TeleportFinishMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.BenefitPackage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.Linden.ViewerStatsMessage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Messages.MessageUtils", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MruRemovalStrategy\u00601", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MultiValueDictionary\u00602", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.MuteEntry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.IncomingPacket", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.OutgoingPacket", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObservableDictionary\u00602", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketEventDictionary", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PacketSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.Packet", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketBlock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.PacketDecoder", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Parcel", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParticleSimulator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PositionHelper", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.ObjMesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.Path", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PrimMesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.Profile", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMap", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.SculptMesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.VertexIndexer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ConstructionData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.FlexibleData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.LightData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.LightImage", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ObjectProperties", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.PhysicsProperties", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.SculptData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureEntry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureEntryFace", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProtocolManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.AttachmentRequest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.CameraRestrictions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.CameraSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.InventoryMap", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.LockedFolderPublic", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvActionCallbacksDefault", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvBlacklist", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvCallbacksDefault", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvCommandProcessor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvCommon", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvInventoryItem", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvPermissionsService", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestriction", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvRestrictionManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvService", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RLV.RlvSharedFolder", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.RegionRestartSchedule", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.AttachmentRiggedSkin", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.AvatarAttachmentPoint", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.AvatarBoneMath", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.AvatarMeshDefinition", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.AvatarPhysicsSimulator", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.JointBase", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenAvatarDefinition", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenSkeleton", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.Mesh", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.MeshFoundry", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.MeshSkinData", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.PhysicsVolumeMorphs", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.RenderingLoader", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.RiggedSkinMath", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.SimpleRenderer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Repeat", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Settings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Simulator.SimStats", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimulatorDataPool", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.SimulatorFeatures", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.SlurlParser", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.SoundManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Sounds", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.UtilizationStatistics", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Stats.UtilizationStatistics.Stat", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSD", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDParser", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainCompressor", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TexturePipeline", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TexturePipelineSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.ManagedAutoResetEvent", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.ManagedManualResetEvent", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.ManagedSemaphore", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.OptimisticReaderWriterLock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.SpinReaderWriterLock", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.WaitHandleAsyncFactory", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TimingSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TokenBucket", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TransactionInfo", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Transfer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.TreeDefinitions", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.UDPBase", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.UDPPacketBuffer", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.ConnectionManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utilities.Realism", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Utils", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualParams", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceInputXml", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceParticipant", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoicePosition", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceSession", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.PeerManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceManager", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.AvatarPosition", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.PeerAudioState", + "position": "base_type", + "signature": "System.Object" + }, + { + "owner_doc_id": "T:LibreMetaverse.WorldSettings", + "position": "base_type", + "signature": "System.Object" + } + ] + }, + { + "doc_id": "T:System.Predicate\u00601", + "signature": "System.Predicate\u003CT\u003E", + "kind": "delegate", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.FindAll(System.Predicate{\u00602})", + "position": "parameter:predicate", + "signature": "System.Predicate\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.FindValue(System.Predicate{\u00602})", + "position": "parameter:predicate", + "signature": "System.Predicate\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.RemoveAll(System.Predicate{\u00602})", + "position": "parameter:predicate", + "signature": "System.Predicate\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Find(System.Predicate{\u00601})", + "position": "parameter:match", + "signature": "System.Predicate\u003CTValue\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.FindAll(System.Predicate{\u00600})", + "position": "parameter:match", + "signature": "System.Predicate\u003CTKey\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.FindAll(System.Predicate{\u00601})", + "position": "parameter:match", + "signature": "System.Predicate\u003CTValue\u003E" + } + ] + }, + { + "doc_id": "T:System.Random", + "signature": "System.Random", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RandomizeAppearance(System.Random)", + "position": "parameter:rng", + "signature": "System.Random" + } + ] + }, + { + "doc_id": "T:System.Runtime.Serialization.ISerializable", + "signature": "System.Runtime.Serialization.ISerializable", + "kind": "interface", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManagerException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.AssetLoadedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Caps.EventQueueCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.DictionaryChangeCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient.ConnectedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Http.EventQueueClient.EventCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.InventoryException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Logger.LogCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LoginException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.AddToFunc", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Builder", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSToolsException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSToolsFatalException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.CSToolsStopException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Func", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.Relation", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.SCreator", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslTools.TCreator", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.NetworkManager.LoginResponseCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.MalformedDataException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.RenderingException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceException", + "position": "interface", + "signature": "System.Runtime.Serialization.ISerializable" + } + ] + }, + { + "doc_id": "T:System.SByte", + "signature": "System.SByte", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.Category", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.Category", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.Action", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathRadiusOffset", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathSkew", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTaperX", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTaperY", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTwist", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathTwistBegin", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathRadiusOffset", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathSkew", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTaperX", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTaperY", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTwist", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathTwistBegin", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathRadiusOffset", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathSkew", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTaperX", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTaperY", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTwist", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathTwistBegin", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.Category", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.DiscardLevel", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.RequestType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.InvType", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Type", + "position": "field_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:invType", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathShear(System.Single)", + "position": "return_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathTaper(System.Single)", + "position": "return_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathTwist(System.Single)", + "position": "return_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathShear(System.SByte)", + "position": "parameter:pathShear", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathTaper(System.SByte)", + "position": "parameter:pathTaper", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathTwist(System.SByte)", + "position": "parameter:pathTwist", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.SByte)", + "position": "parameter:value", + "signature": "System.SByte" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.SByte)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.SByte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.stencil_clear", + "position": "property_type", + "signature": "System.SByte" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common.Value", + "position": "property_type", + "signature": "System.SByte" + } + ] + }, + { + "doc_id": "T:System.Single", + "signature": "System.Single", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Far", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Animesh.JointPose.EaseWeight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.ColorParamInfo.Value", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.AppearanceManager.TextureData.AlphaMasks", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetDownload.Priority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.Params", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepWait.WaitTime", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GltfTextureTransform.Rotation", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.CollisionSoundVolume", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Drag", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Gravity", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Tension", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Wind", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Cutoff", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Falloff", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Intensity", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LightBlock.Radius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstRadius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstRate", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstSpeedMax", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.BurstSpeedMin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.InnerAngle", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.MaxAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.OuterAngle", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.ParticleMaxAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParticlesBlock.StartAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathRadiusOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathRevolutions", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathScaleX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathScaleY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathShearX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathShearY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathSkew", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTaperX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTaperY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTwist", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.PathTwistBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ShapeBlock.ProfileHollow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundGain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SoundRadius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.ObjectBonus", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange00", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange01", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange10", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainHeightRange11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainLowerLimit", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainRaiseLimit", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight00", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight01", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight10", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.TerrainStartHeight11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.RegionSettings.WaterHeight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.EaseInTime", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.EaseOutTime", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.InPoint", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.Length", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.OutPoint", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Color4.A", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Color4.B", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Color4.G", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Color4.R", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.GlobalX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.GlobalY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.GlobalZ", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DrivenParamInfo.Max1", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DrivenParamInfo.Max2", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DrivenParamInfo.Min1", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.DrivenParamInfo.Min2", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTask.MonoScore", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTask.Score", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeight.High", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTools.GroundTextureHeight.Low", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupProposal.Majority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupVoteMajority.SimpleMajority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupVoteMajority.TwoThirdsMajority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupVoteMajority.Unanimous", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImageDownload.Priority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImageRequest.Priority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.LiveParticle.Age", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.LiveParticle.Glow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.LiveParticle.NormalizedAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.LiveParticle.ScaleX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.LiveParticle.ScaleY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M12", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M13", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M14", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M21", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M22", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M23", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M24", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M31", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M32", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M33", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M34", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M41", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M42", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M43", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Matrix4.M44", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.HoverHeight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.MonoScore", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.Score", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.ParcelPrimBonus", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.PassHours", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.PassHours", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.GlobalX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.GlobalY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.GlobalZ", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Glow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ImageRot", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.OffsetS", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.OffsetT", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ScaleS", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.ScaleT", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.PathBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.PathEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ProfileHollow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.RadiusOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Revolutions", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ScaleX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ScaleY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ShearX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ShearY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Skew", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.TaperX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.TaperY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Twist", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.TwistBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentFPS", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentMemoryUsed", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentPing", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentRuntime", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InKbytes", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InPackets", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.InSavings", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MetersTraveled", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscVersion", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutKbytes", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutPackets", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.OutSavings", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SimulatorFPS", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.object_kbytes", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.texture_kbytes", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.world_kbytes", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ObjectManager.HAVOK_TIMESTEP", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.VerticalAngle", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.Far", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.Gain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.Gain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.Radius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Aspect", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.EnergyLevel", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.Far", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.SearchOrder", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.EnergyEfficiency", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceObjectRent", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceObjectScaleFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.PriceParcelClaimFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.TeleportPriceExponent", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.BillableFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.Majority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.Majority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.Health", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.LocationX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.LocationY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.LocationZ", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.Score", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.Duration", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Mag", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Height", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.Seconds", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.BrushSize", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.East", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.North", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.South", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.West", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Density", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Friction", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.GravityMultiplier", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.Restitution", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Gain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.Radius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.East", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.North", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.South", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.West", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.East", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.North", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.South", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.West", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.GlobalX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.GlobalY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.GlobalZ", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.East", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.North", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.South", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.West", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Time", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ParcelPrimBonus", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.PassHours", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.East", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.North", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.South", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.West", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.PassHours", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.GlobalX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.GlobalY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.GlobalZ", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.BillableFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange00", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange01", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange10", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainHeightRange11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight00", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight01", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight10", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.TerrainStartHeight11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.WaterHeight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.DamageLimit", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.DamageThrottle", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.InvulnerabilyTime", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.RegenerationRate", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatNormalOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatNormalRange", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatShoutOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatShoutRange", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatWhisperOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatWhisperRange", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.BillableFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ObjectBonusFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.SunHour", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.TerrainLowerLimit", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.TerrainRaiseLimit", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.WaterHeight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.DownloadPriority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.Range", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Arc", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.Range", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.Value", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.StatBlock.StatValue", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.TimeDilation", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SunPhase", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Gain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.Majority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.Priority", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.RegionX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.RegionY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.Duration", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FPS", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.Ping", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.RunTime", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SimFPS", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.ParcelPrimBonus", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.PassHours", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.Dwell", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.GlobalX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.GlobalY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.GlobalZ", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Coord.X", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Coord.Y", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Coord.Z", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.dimpleBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.dimpleEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.holeSizeX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.holeSizeY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.pathCutBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.pathCutEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.radius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.revolutions", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.skew", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.taperX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.taperY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.topShearX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.topShearY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.twistBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Path.twistEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PathNode.percentOfPath", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PathNode.xScale", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PathNode.yScale", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.dimpleBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.dimpleEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.holeSizeX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.holeSizeY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.pathCutBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.pathCutEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.radius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.revolutions", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.skew", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.taperX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.taperY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.topShearX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.topShearY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.us", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Quat.W", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Quat.X", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Quat.Y", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Quat.Z", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.UVCoord.U", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.UVCoord.V", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathRadiusOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathRevolutions", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathScaleX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathScaleY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathShearX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathShearY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathSkew", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTaperX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTaperY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTwist", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.PathTwistBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.ProfileBegin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.ProfileEnd", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ConstructionData.ProfileHollow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Drag", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Gravity", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Tension", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.FlexibleData.Wind", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.LightData.Cutoff", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.LightData.Falloff", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.LightData.Intensity", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.LightData.Radius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstRadius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstRate", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstSpeedMax", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.BurstSpeedMin", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.InnerAngle", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.MaxAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.OuterAngle", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndGlow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndScaleX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartEndScaleY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartMaxAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartGlow", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartScaleX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartStartScaleY", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.StartAge", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.Density", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.Friction", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.GravityMultiplier", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.Restitution", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.SoundGain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.SoundRadius", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Length", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Rate", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Start", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Quaternion.W", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Quaternion.X", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Quaternion.Y", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Quaternion.Z", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.Weights", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MinPixelWidth", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.MinPixelWidth", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Weight1", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Weight2", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Vertex.Weight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.AltInverseBindMatrices", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.BindShapeMatrix", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.InverseBindMatrices", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.PelvisOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.PathPoint.TexT", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.MaxX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Profile.MinX", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.ProfileFace.ScaleU", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight0", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight1", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight2", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.VertexWeight.Weight3", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.TexturePipelineRefreshInterval", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.BillableFactor", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange00", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange01", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange10", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainHeightRange11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight00", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight01", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight10", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.TerrainStartHeight11", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.WaterHeight", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Data", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Header.DCOffset", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.DEG_TO_RAD", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.E", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.LOG10E", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.LOG2E", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.PI", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.PI_OVER_FOUR", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.PI_OVER_TWO", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.RAD_TO_DEG", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Utils.TWO_PI", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector2.X", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector2.Y", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector3.X", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector3.Y", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector3.Z", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector4.W", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector4.X", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector4.Y", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vector4.Z", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualAlphaParam.Domain", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.DefaultValue", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.MaxValue", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.MinValue", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.MicEnergy", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.Energy", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.Energy", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "F:LibreMetaverse.binBVHJointKey.time", + "position": "field_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Pitch(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Roll(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.SetPositionOrientation(LibreMetaverse.Vector3,System.Single,System.Single,System.Single)", + "position": "parameter:pitch", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.SetPositionOrientation(LibreMetaverse.Vector3,System.Single,System.Single,System.Single)", + "position": "parameter:roll", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.SetPositionOrientation(LibreMetaverse.Vector3,System.Single,System.Single,System.Single)", + "position": "parameter:yaw", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Yaw(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendManualUpdate(LibreMetaverse.AgentManager.ControlFlags,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Quaternion,System.Single,LibreMetaverse.AgentFlags,LibreMetaverse.AgentState,System.Boolean)", + "position": "parameter:farClip", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SetFOVVerticalAngle(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.UInt64,System.UInt64,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilotLocal(System.Int32,System.Int32,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.BeamEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.Color4,System.Single,LibreMetaverse.UUID)", + "position": "parameter:duration", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "parameter:threshold", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestScriptSensor(System.String,LibreMetaverse.UUID,LibreMetaverse.ScriptSensorTypeFlags,System.Single,System.Single,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "parameter:arc", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestScriptSensor(System.String,LibreMetaverse.UUID,LibreMetaverse.ScriptSensorTypeFlags,System.Single,System.Single,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "parameter:range", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SphereEffect(LibreMetaverse.Vector3d,LibreMetaverse.Color4,System.Single,LibreMetaverse.UUID)", + "position": "parameter:duration", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.Advance(System.Single)", + "position": "parameter:dt", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshManager.Update(System.Single)", + "position": "parameter:dt", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshPlayer.Update(System.Single)", + "position": "parameter:dt", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.BlendToArchetype(LibreMetaverse.GenepoolArchetype,System.Single)", + "position": "parameter:t", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentParamValues", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaCutoff(System.Single,System.Boolean)", + "position": "parameter:cutoff", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetMetallicFactor(System.Single,System.Boolean)", + "position": "parameter:metallic", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetRoughnessFactor(System.Single,System.Boolean)", + "position": "parameter:roughness", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureRotation(System.Int32,System.Single)", + "position": "parameter:rotation", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetSamplerTimestamps(LibreMetaverse.Assets.Gltf.GltfAnimationSampler)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetSamplerWeights(LibreMetaverse.Assets.Gltf.GltfAnimationSampler)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.BeginInvoke(System.Single[0:,0:],System.Int64,System.Int64,System.AsyncCallback,System.Object)", + "position": "parameter:terrain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.Invoke(System.Single[0:,0:],System.Int64,System.Int64)", + "position": "parameter:terrain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AttachedSoundEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,LibreMetaverse.SoundFlags)", + "position": "parameter:gain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AttachedSoundGainChangeEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Single)", + "position": "parameter:gain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetPlaybackVolume(System.Single)", + "position": "parameter:normalized", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Avatar.DecodeVisualParams", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarAppearanceEventArgs.DecodeVisualParams", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readKeys(System.Byte[],System.Int32@,System.Int32,System.Single,System.Single)", + "position": "parameter:max", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.readKeys(System.Byte[],System.Int32@,System.Int32,System.Single,System.Single)", + "position": "parameter:min", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFixed(System.Single,System.Boolean,System.Int32,System.Int32)", + "position": "parameter:data", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFloat(System.Single)", + "position": "parameter:data", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackFixed(System.Boolean,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackFloat", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:a", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:b", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:g", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:r", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.GetHue", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.Lerp(LibreMetaverse.Color4,LibreMetaverse.Color4,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Pitch(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Roll(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(System.Single,LibreMetaverse.Vector3)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Yaw(System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:max1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:max2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:min1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.DrivenParamInfo.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:min2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoAsync(System.String,System.Single,LibreMetaverse.RegionFlags,System.Threading.CancellationToken)", + "position": "parameter:sunHour", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoDataserver(System.String,System.Single,LibreMetaverse.RegionFlags)", + "position": "parameter:sunHour", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:agentLimit", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:objectBonus", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:agentLimit", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "parameter:objectBonus", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:highNE", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:highNW", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:highSE", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:highSW", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:lowNE", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:lowNW", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:lowSE", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:lowSW", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "parameter:SunPosition", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "parameter:TerrainLowerLimit", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "parameter:TerrainRaiseLimit", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "parameter:WaterHeight", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.FloatToTerseString(System.Single)", + "position": "parameter:val", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GlobalPosToRegionHandle(System.Single,System.Single,System.Single@,System.Single@)", + "position": "parameter:globalX", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GlobalPosToRegionHandle(System.Single,System.Single,System.Single@,System.Single@)", + "position": "parameter:globalY", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GlobalPosToRegionHandle(System.Single,System.Single,System.Single@,System.Single@)", + "position": "parameter:localX", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GlobalPosToRegionHandle(System.Single,System.Single,System.Single@,System.Single@)", + "position": "parameter:localY", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEGlowByte(System.Single)", + "position": "parameter:glow", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEGlowFloat(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEOffsetFloat(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TEOffsetShort(System.Single)", + "position": "parameter:offset", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TERotationFloat(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.TERotationShort(System.Single)", + "position": "parameter:rotation", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImageRequest.#ctor(LibreMetaverse.UUID,LibreMetaverse.ImageType,System.Single,System.Int32)", + "position": "parameter:priority", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.LandPatchReceivedEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.Int32,System.Single[])", + "position": "parameter:heightMap", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:pitch", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:roll", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:yaw", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m11", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m12", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m13", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m14", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m21", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m22", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m23", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m24", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m31", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m32", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m33", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m34", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m41", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m42", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m43", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:m44", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateFromAxisAngle(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateFromEulers(System.Single,System.Single,System.Single)", + "position": "parameter:pitch", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateFromEulers(System.Single,System.Single,System.Single)", + "position": "parameter:roll", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateFromEulers(System.Single,System.Single,System.Single)", + "position": "parameter:yaw", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateRotationX(System.Single)", + "position": "parameter:radians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateRotationY(System.Single)", + "position": "parameter:radians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.CreateRotationZ(System.Single)", + "position": "parameter:radians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Determinant", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Determinant3x3", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Divide(LibreMetaverse.Matrix4,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "parameter:pitch", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "parameter:roll", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "parameter:yaw", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Lerp(LibreMetaverse.Matrix4,LibreMetaverse.Matrix4,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Multiply(LibreMetaverse.Matrix4,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.Trace", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.op_Division(LibreMetaverse.Matrix4,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.op_Multiply(LibreMetaverse.Matrix4,System.Single)", + "position": "parameter:scalar", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.MeanCollisionEventArgs.#ctor(LibreMetaverse.MeanCollisionType,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,System.DateTime)", + "position": "parameter:magnitude", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "parameter:threshold", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:density", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:friction", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:gravityMultiplier", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:restitution", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelDwellReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int32,System.Single)", + "position": "parameter:dwell", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelJoin(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:east", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelJoin(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:north", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelJoin(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:south", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelJoin(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:west", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelSubdivide(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:east", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelSubdivide(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:north", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelSubdivide(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:south", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelSubdivide(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:west", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "parameter:east", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "parameter:north", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "parameter:south", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "parameter:west", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "parameter:east", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "parameter:north", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "parameter:south", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32)", + "position": "parameter:west", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:east", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:height", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:north", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:south", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "parameter:west", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelMediaCommandEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.ParcelFlags,LibreMetaverse.ParcelMediaCommand,System.Single)", + "position": "parameter:time", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParticleSimulator.Tick(System.Single)", + "position": "parameter:dt", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Coord.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Coord.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Coord.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Coord.Length", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32)", + "position": "parameter:hollow", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32)", + "position": "parameter:profileEnd", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32)", + "position": "parameter:profileStart", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:hollow", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:profileEnd", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.#ctor(System.Int32,System.Single,System.Single,System.Single,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:profileStart", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.Scale(System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.Scale(System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(LibreMetaverse.PrimMesher.Coord,System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:w", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.Length", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:xBegin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:xEnd", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:yBegin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:yEnd", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single,System.Boolean)", + "position": "parameter:zMap", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.UVCoord.#ctor(System.Single,System.Single)", + "position": "parameter:u", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.UVCoord.#ctor(System.Single,System.Single)", + "position": "parameter:v", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddPos(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.Scale(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackBeginCut(System.Single)", + "position": "parameter:beginCut", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackEndCut(System.Single)", + "position": "parameter:endCut", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathRevolutions(System.Single)", + "position": "parameter:pathRevolutions", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathScale(System.Single)", + "position": "parameter:pathScale", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathShear(System.Single)", + "position": "parameter:pathShear", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathTaper(System.Single)", + "position": "parameter:pathTaper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackPathTwist(System.Single)", + "position": "parameter:pathTwist", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackProfileHollow(System.Single)", + "position": "parameter:profileHollow", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackBeginCut(System.UInt16)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackEndCut(System.UInt16)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathRevolutions(System.Byte)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathScale(System.Byte)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathShear(System.SByte)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathTaper(System.SByte)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackPathTwist(System.SByte)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackProfileHollow(System.UInt16)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:scalarPart", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:w", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ApproxEquals(LibreMetaverse.Quaternion,System.Single)", + "position": "parameter:tolerance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:axisX", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:axisY", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromAxisAngle(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:axisZ", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromEulers(System.Single,System.Single,System.Single)", + "position": "parameter:pitch", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromEulers(System.Single,System.Single,System.Single)", + "position": "parameter:roll", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.CreateFromEulers(System.Single,System.Single,System.Single)", + "position": "parameter:yaw", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Dot(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetAxisAngle(LibreMetaverse.Vector3@,System.Single@)", + "position": "parameter:angle", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "parameter:pitch", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "parameter:roll", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "parameter:yaw", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Length", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.LengthSquared", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Multiply(LibreMetaverse.Quaternion,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Slerp(LibreMetaverse.Quaternion,LibreMetaverse.Quaternion,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.op_Multiply(LibreMetaverse.Quaternion,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:avDistMax", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:avDistMin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:currentFov", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:fovMax", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:fovMin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.CameraSettings.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:zoomMin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:delta", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:distance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:factor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:fovInRadians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:angleInRadians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:lookat", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:delta", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:distance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:factor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:fovInRadians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:angleInRadians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:lookat", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSitTp(System.Single@)", + "position": "parameter:maxDistance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTouch(LibreMetaverse.RLV.RlvPermissionsService.TouchLocation,System.Guid,System.Nullable{System.Guid},System.Nullable{System.Single})", + "position": "parameter:distance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanTpLocal(System.Single@)", + "position": "parameter:maxDistance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.TryGetMaxFarTouchDistance(System.Single@)", + "position": "parameter:maxDistance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.RegionCrossingPredictionEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.BorderCrossingDirection,System.Single)", + "position": "parameter:timeUntilCrossing", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeGroundAdjustment(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetWearableParams(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:visualParams", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.Tick(System.Single)", + "position": "parameter:time", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.Tick(System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadSingle", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.ComputeBoneTransforms(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:paramValues", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TerrainMesh(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:xBegin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TerrainMesh(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:xEnd", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TerrainMesh(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:yBegin", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TerrainMesh(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:yEnd", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TerrainMesh(System.Single[0:,0:],System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:zMap", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:drivenWeights", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "parameter:vpWeights", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.FloatsToMatrix(System.Single[])", + "position": "parameter:f", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:w0", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:w1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:w2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "parameter:w3", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptSensorReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3,System.Single,LibreMetaverse.Quaternion,LibreMetaverse.ScriptSensorTypeFlags,LibreMetaverse.Vector3)", + "position": "parameter:range", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.TerrainHeightAtPoint(System.Int32,System.Int32,System.Single@)", + "position": "parameter:height", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Simulator,LibreMetaverse.Vector3,System.Single)", + "position": "parameter:gain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Vector3,System.Single)", + "position": "parameter:gain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,System.UInt64,LibreMetaverse.Vector3,System.Single)", + "position": "parameter:gain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundTriggerEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,System.UInt64,LibreMetaverse.Vector3)", + "position": "parameter:gain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromReal(System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Single", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Single)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[0:,0:],System.Int32,System.Int32)", + "position": "parameter:patchData", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32,System.Int32)", + "position": "parameter:patchData", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreateLandPacket(System.Single[],System.Int32[])", + "position": "parameter:heightmap", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32)", + "position": "parameter:patchData", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:patchData", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32)", + "position": "parameter:heightmap", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32,System.Boolean)", + "position": "parameter:heightmap", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.DecompressPatch(System.Int32[],LibreMetaverse.TerrainPatch.Header,LibreMetaverse.TerrainPatch.GroupHeader)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte,System.Single,System.Single)", + "position": "parameter:lower", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte,System.Single,System.Single)", + "position": "parameter:upper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:lower", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:upper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ByteToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToFloat(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Single,System.Single,System.Single)", + "position": "parameter:max", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Single,System.Single,System.Single)", + "position": "parameter:min", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Single,System.Single,System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Clamp(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Distance(System.Single,System.Single)", + "position": "parameter:value1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Distance(System.Single,System.Single)", + "position": "parameter:value2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Distance(System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToByte(System.Single,System.Single,System.Single)", + "position": "parameter:lower", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToByte(System.Single,System.Single,System.Single)", + "position": "parameter:upper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToByte(System.Single,System.Single,System.Single)", + "position": "parameter:val", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToUInt16(System.Single,System.Single,System.Single)", + "position": "parameter:lower", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToUInt16(System.Single,System.Single,System.Single)", + "position": "parameter:upper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToUInt16(System.Single,System.Single,System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:tangent1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:tangent2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:value1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:value2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IsFinite(System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Single,System.Single,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Single,System.Single,System.Single)", + "position": "parameter:value1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Single,System.Single,System.Single)", + "position": "parameter:value2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Lerp(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ReadSingleLittleEndian(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Round(System.Single)", + "position": "parameter:val", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Single,System.Single,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Single,System.Single,System.Single)", + "position": "parameter:value1", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Single,System.Single,System.Single)", + "position": "parameter:value2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SmoothStep(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ToDegrees(System.Single)", + "position": "parameter:radians", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ToDegrees(System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ToRadians(System.Single)", + "position": "parameter:degrees", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.ToRadians(System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseSingle(System.String,System.Single@)", + "position": "parameter:result", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:lower", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "parameter:upper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.Byte[],System.Int32,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.UInt16,System.Single,System.Single)", + "position": "parameter:lower", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.UInt16,System.Single,System.Single)", + "position": "parameter:upper", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.UInt16,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteSingleLittleEndian(System.Byte[],System.Int32,System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.#ctor(System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.#ctor(System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.#ctor(System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ApproxEquals(LibreMetaverse.Vector2,System.Single)", + "position": "parameter:tolerance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Distance(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.DistanceSquared(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Divide(LibreMetaverse.Vector2,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Dot(LibreMetaverse.Vector2,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Length", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.LengthSquared", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Lerp(LibreMetaverse.Vector2,LibreMetaverse.Vector2,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Multiply(LibreMetaverse.Vector2,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.SmoothStep(LibreMetaverse.Vector2,LibreMetaverse.Vector2,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.op_Division(LibreMetaverse.Vector2,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.op_Multiply(LibreMetaverse.Vector2,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(LibreMetaverse.Vector2,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.#ctor(System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ApproxEquals(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:tolerance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Distance(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.DistanceSquared(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Divide(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:value2", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Dot(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Length", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.LengthSquared", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Lerp(LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Mag(LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Multiply(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.SmoothStep(LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.op_Division(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.op_Multiply(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(LibreMetaverse.Vector2,System.Single,System.Single)", + "position": "parameter:w", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(LibreMetaverse.Vector2,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(LibreMetaverse.Vector3,System.Single)", + "position": "parameter:w", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single)", + "position": "parameter:value", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:w", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:x", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:y", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:z", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ApproxEquals(LibreMetaverse.Vector4,System.Single)", + "position": "parameter:tolerance", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Distance(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.DistanceSquared(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Divide(LibreMetaverse.Vector4,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Dot(LibreMetaverse.Vector4,LibreMetaverse.Vector4)", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Length", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.LengthSquared", + "position": "return_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Lerp(LibreMetaverse.Vector4,LibreMetaverse.Vector4,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Multiply(LibreMetaverse.Vector4,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.SmoothStep(LibreMetaverse.Vector4,LibreMetaverse.Vector4,System.Single)", + "position": "parameter:amount", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.op_Division(LibreMetaverse.Vector4,System.Single)", + "position": "parameter:divider", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.op_Multiply(LibreMetaverse.Vector4,System.Single)", + "position": "parameter:scaleFactor", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ViewerEffectEventArgs.#ctor(LibreMetaverse.EffectType,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,System.Single,LibreMetaverse.UUID)", + "position": "parameter:duration", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ViewerEffectLookAtEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.LookAtType,System.Single,LibreMetaverse.UUID)", + "position": "parameter:duration", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.ViewerEffectPointAtEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.PointAtType,System.Single,LibreMetaverse.UUID)", + "position": "parameter:duration", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualAlphaParam.#ctor(System.Single,System.String,System.Boolean,System.Boolean)", + "position": "parameter:domain", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:def", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:max", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:min", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AudioPropertiesEventArgs.#ctor(System.Boolean,System.Single,System.Int32,System.Int32)", + "position": "parameter:MicEnergy", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:Energy", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:energy", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.BeginInvoke(System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:level", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.Invoke(System.Single)", + "position": "parameter:level", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.BeginInvoke(System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:energy", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.Invoke(System.Int32,System.Single)", + "position": "parameter:energy", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:energy", + "signature": "System.Single" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:energy", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.Health", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.HoverHeight", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Asset", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Cloud", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Land", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Resend", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Task", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Texture", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Total", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentThrottle.Wind", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.CurrentTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Animesh.AnimationTrack.EaseWeight", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ArchetypeParam.Value", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.AlphaCutoff", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.MetallicFactor", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.RoughnessFactor", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.AlphaCutoff", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.MetallicFactor", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.RoughnessFactor", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNormalTextureRef.Scale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfOcclusionTextureRef.Strength", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AttachedSoundEventArgs.Gain", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AttachedSoundGainChangeEventArgs.Gain", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AttentionData.Priority", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AttentionData.Timeout", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.SpeakerLevel", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.GrassDefinition.BladeSizeX", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.GrassDefinition.BladeSizeY", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.SunPhase", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue.value", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue.value", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.mipmap_bias", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.mipmap_bias", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.mipmap_bias", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.mipmap_bias", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.mipmap_bias", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.mipmap_bias", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandAlpha_type.scale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_commandRGB_type.scale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.LandPatchReceivedEventArgs.HeightMap", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Matrix4.Item(System.Int32,System.Int32)", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.MeanCollisionEventArgs.Magnitude", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelDwellReplyEventArgs.Dwell", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.Time", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParticleSimulator.SystemAge", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Glow", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.OffsetU", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.OffsetV", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.RepeatU", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.RepeatV", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Primitive.TextureEntryFace.Rotation", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDist", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDistMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.AvDistMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawAlphaMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawAlphaMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.DrawMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.FovMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.FovMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.ZoomMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraRestrictions.ZoomMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraSettings.AvDistMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraSettings.AvDistMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraSettings.CurrentFov", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraSettings.FovMax", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraSettings.FovMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.CameraSettings.ZoomMin", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.RegionCrossingPredictionEventArgs.TimeUntilCrossing", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.Joint.pivot", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.end", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.pos", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.rot", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.scale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.version", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Range", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.AgentTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.AgentUpdates", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.Dilation", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.FrameTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.ImageTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.NetTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.OtherTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.PhysicsFPS", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.PhysicsTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Simulator.SimStats.ScriptTime", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.Gain", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.BillboardRatio", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.BillboardScale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.BranchAspect", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.BranchLength", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.Branches", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.Droop", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.LeafRotate", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.LeafScale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.NoiseMag", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.NoiseScale", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.ScaleStep", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.Taper", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.TrunkAspect", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.TrunkDepth", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.TrunkLength", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.Twist", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ViewerEffectEventArgs.Duration", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ViewerEffectLookAtEventArgs.Duration", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.ViewerEffectPointAtEventArgs.Duration", + "position": "property_type", + "signature": "System.Single" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.Energy", + "position": "property_type", + "signature": "System.Single" + } + ] + }, + { + "doc_id": "T:System.Span\u00601", + "signature": "System.Span\u003CT\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AnimeshSkinning.DeformVertices(LibreMetaverse.Rendering.Face,LibreMetaverse.Matrix4[],LibreMetaverse.Matrix4,System.Span{LibreMetaverse.Vector3},System.Span{LibreMetaverse.Vector3})", + "position": "parameter:outNormals", + "signature": "System.Span\u003CLibreMetaverse.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AnimeshSkinning.DeformVertices(LibreMetaverse.Rendering.Face,LibreMetaverse.Matrix4[],LibreMetaverse.Matrix4,System.Span{LibreMetaverse.Vector3},System.Span{LibreMetaverse.Vector3})", + "position": "parameter:outPositions", + "signature": "System.Span\u003CLibreMetaverse.Vector3\u003E" + } + ] + }, + { + "doc_id": "T:System.String", + "signature": "System.String", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.Voice.WebRTC.VoiceManager.OnParcelVoiceInfo", + "position": "event_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.AgentManager.MuteList", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetCacheSettings.Dir", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSETS_PATH", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSET_EXTENSION_SEPARATOR", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.ASSET_TYPE_TO_EXTENSION", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.CONTROL_FILE_PATH", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.EXTENSION_TO_ASSET_TYPE", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.LANDDATA_PATH", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.OBJECTS_PATH", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.SETTINGS_PATH", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.ArchiveConstants.TERRAINS_PATH", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetGesture.ReplaceWith", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetGesture.Trigger", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetNotecard.BodyText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetScriptText.Source", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetWearable.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepAnimation.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepChat.Text", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.GestureStepSound.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_COLOR_0", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_JOINTS_0", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_NORMAL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_POSITION", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_TANGENT", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_TEXCOORD_0", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_TEXCOORD_1", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.Gltf.GltfPrimitive.ATTR_WEIGHTS_0", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.SitName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.Text", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.TouchName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.TarHeader.FilePath", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.AboutText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.BornOn", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.CharterMember", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.FirstLifeText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.AvatarProperties.ProfileURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Interests.LanguagesText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Interests.SkillsText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Interests.WantToText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.AvatarGroup.GroupName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.AvatarGroup.GroupTitle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.ExpressionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.BuddyListEntry.BuddyId", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.ParcelName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.SimName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ConnectionSettings.LoginServer", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.FirstName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.AgentSearchData.LastName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.Classified.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.DirectoryParcel.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Date", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.SimName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Date", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.GroupSearchData.GroupName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.SKU", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.PlacesSearchData.SimName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.EnumInfoAttribute.Text", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTask.OwnerName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTask.TaskName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridRegion.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.Charter", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.MemberTitle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Group.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.LastTaxDate", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.StartDate", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupAccountSummary.TaxDate", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupMember.OnlineStatus", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupMember.Title", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupNotice.Message", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupNotice.Subject", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupNoticesListEntry.FromName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupNoticesListEntry.Subject", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupProposal.VoteText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupRole.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupRole.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupRole.Title", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupTitle.Title", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.ContentType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.HttpCapsClient.LLSD_BINARY", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.HttpCapsClient.LLSD_JSON", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.HttpCapsClient.LLSD_XML", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelFace.MaterialID", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.ID", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelMaterial.Texture", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelPrim.ID", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.InstantMessage.FromAgentName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.InstantMessage.Message", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.InventoryAISClient.INVENTORY_CAP_NAME", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.InventoryAISClient.LIBRARY_CAP_NAME", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Author", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Channel", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.FirstName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.ID0", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.LastName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.LoginLocation", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.MAC", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.MethodName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.MfaHash", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Options", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Password", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Platform", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.PlatformVersion", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Start", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Token", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.URI", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.UserAgent", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.Version", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LoginParams.ViewerDigest", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Keyword", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslSyntax.LslKeyword.Tooltip", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSToolsException.sInput", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CSymbol.m_initialisation", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.CsReader.fname", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Dfa.m_tokClass", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.GenBase.m_outname", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Lexer.m_buf", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Lexer.m_state", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.Lexer.yytext", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.NfaNode.m_sTerminal", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.ParsingInfo.m_name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_implement", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_initialisation", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.TokClassDef.m_refToken", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Cls", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Ctx", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Out", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.cs0syntax.Par", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.LslTools.cs0tokens.Out", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapAdultEvent.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapAdultLandForSale.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapAgentLocation.Identifier", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapBlock.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapField.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapLandForSale.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapMatureEvent.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapPGEvent.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapPacket.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.CurrentURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.HomeURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MediaEntry.WhiteList", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.GroupData.GroupTitle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CaptionText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.CustomerType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.DisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.FirstLifeAboutText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.GroupData.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.HomePage", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.LegacyFirstName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.LegacyLastName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Notes", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.ParcelName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.RegionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.SecondLifeAboutText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Title", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.Username", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.Language", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.MaxAccess", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AssetUploaderBlock.State", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryAvailable", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BaseResourcesInfo.SummaryUsed", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.FolderDataInfo.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock.Method", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.RequestKey", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.FromAgentName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Message", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.VoiceChannelCredentials", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.VoiceChannelUri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.AgentUpdatesBlock.Transition", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.SessionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DirLandReplyMessage.QueryReply.ProductSku", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.OldDisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EventQueueEvent.QueueEvent.MessageKey", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.ExtendedMetadata", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Marketplace", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ExperienceInfo.SLURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.Reason", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.OwnerName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TaskName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Status", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.State", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.State", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.State", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.URL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaRequest.Verb", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaResponse.Version", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.Verb", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Resources", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaDesc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MediaURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.MusicURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaDesc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MediaURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.MusicURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.RegionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.ProductSku", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.PlacesReplyMessage.QueryData.SimName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.ProductInfo.Sku", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Password", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Username", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RegionInfoMessage.ChannelUri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RegionInfoMessage.RegionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.RegionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.FromName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.Message", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.Subject", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SendPostcardMessage.ToEmail", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.NewDisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.OldDisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Reason", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SimConsoleAsyncMessage.Command", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage.Body", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.ExtraParams", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.MessageKey", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFailedMessage.Reason", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage.MaxAccess", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.Language", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.Target", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.Target", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Error", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.AccountType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.PremiumPackages", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentLanguage", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.AgentVersion", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.MiscString1", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemCPU", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPU", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPUVendor", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemGPUVersion", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ViewerStatsMessage.SystemOS", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.MuteEntry.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.NameValue.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.MusicURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelInfo.SimName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaDesc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ParcelMedia.MediaURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.ObjMesh.meshName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.PrimMesh.errorMessage", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.PrimMesher.Profile.errorMessage", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.MediaURL", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.MediaVersion", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.Description", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.SitName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ObjectProperties.TouchName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.Text", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.Desc", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.OriginalName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.SimName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProfilePick.User", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.ProtocolManager.KeywordPositions", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.RLV.RlvService.RLVVersion", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.RLV.RlvService.RLVVersionNum", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.JointNames", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.JointPositionOverrides", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.Morph.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.Header", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Bone1", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement.Bone2", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.MeshSkinData.JointNames", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.AditiLoginServer", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.AgniLoginServer", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.ResourceDir", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Settings.UserAgent", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ColoLocation", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ProductName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ProductSku", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.SimVersion", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.SkeletalBoneInfo.BoneName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.StructuredData.OSDLlsdXml.value", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.TransactionInfo.ItemDescription", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualAlphaParam.TGAFile", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.Label", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.LabelMax", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.LabelMin", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VisualParam.Wearable", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.AccountHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.StatusString", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.CaptureDevice.Device", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.AccountHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.AudioMedia", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.AccountName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.Appllication", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.DisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.AccountName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.Reason", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.AccountName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.DisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.StatusString", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.RenderDevice.Device", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.AccountHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.Type", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.ChannelName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.StatusString", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.AccountHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.AccountName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Application", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.AudioMedia", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.ChannelName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.DisplayName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Energy", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.HasAudio", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.HasText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.HasVideo", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Incoming", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsChannel", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsFocused", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsIncoming", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsLocallyMuted", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsModeratorMuted", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsMuted", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.IsSpeaking", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.MicEnergy", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.MicIsActive", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.MicVolume", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.ParticipantType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.ParticipantUri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Reason", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.SessionGroupHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.SpeakerVolume", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.State", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.StatusCode", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.StatusString", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Terminated", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.TransmitEnabled", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Type", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.URI", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Uri", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceEvent.Volume", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.FileNamePrefix", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.FileNameSuffix", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings.Folder", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountManagementServer", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountPassword", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AccountURI", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Action", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.AudioSessionAnswerMode", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.CaptureDeviceSpecifier", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ClientName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ConnectorHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Duration", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.EnableBuddiesAndPresence", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.JoinAudio", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.JoinText", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Level", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Loop", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.MaximumPort", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.MinimumPort", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.OrientationType", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ParticipantPropertyFrequency", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.ParticipantURI", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Password", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.PasswordHashAlgorithm", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.RenderDeviceSpecifier", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.RequestId", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.SoundFilePath", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.URI", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Value", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceRequest.Volume", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.Action", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponse.RequestId", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.Message", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.AccountHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.ConnectorHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.StatusString", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseResults.VersionID", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.SessionHandle", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.DAEMON_ARGS", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.REQUEST_TERMINATOR", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VOICE_DEBUG_SERVER", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VOICE_RELEASE_SERVER", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceManager.VoiceServer", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.Vivox.VoiceSession.RegionName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.PROVISION_VOICE_ACCOUNT_CAP", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Voice.WebRTC.VoiceSession.VOICE_SIGNALING_CAP", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.VolumeMorphInfo.BoneName", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.Vote.VoteString", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.XferDownload.Filename", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "F:LibreMetaverse.binBVHJoint.Name", + "position": "field_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentAccessEventArgs.#ctor(System.Boolean,System.String)", + "position": "parameter:newLevel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentDataReplyEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.GroupPowers,System.String)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentDataReplyEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.GroupPowers,System.String)", + "position": "parameter:groupName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentDataReplyEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.GroupPowers,System.String)", + "position": "parameter:groupTitle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentDataReplyEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.GroupPowers,System.String)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentDisplayName.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Chat(System.String,System.Int32,LibreMetaverse.ChatType,System.Boolean)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.FindExperienceByNameAsync(System.String,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:query", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetCrossingDetails", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveMoney(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.MoneyTransactionType,LibreMetaverse.TransactionFlags)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveObjectMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "parameter:objectName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.InstantMessageDialog,LibreMetaverse.InstantMessageOnline,LibreMetaverse.Vector3,LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:fromName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.InstantMessageDialog,LibreMetaverse.InstantMessageOnline,LibreMetaverse.Vector3,LibreMetaverse.UUID,System.Byte[])", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID[])", + "position": "parameter:fromName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID[])", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(System.String,LibreMetaverse.UUID,System.String)", + "position": "parameter:fromName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(System.String,LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ModerateChatSessions(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee(System.String)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PickInfoUpdate(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID,System.String,LibreMetaverse.Vector3d,LibreMetaverse.UUID,System.String)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PickInfoUpdate(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID,System.String,LibreMetaverse.Vector3d,LibreMetaverse.UUID,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RemoveMuteListEntry(LibreMetaverse.UUID,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ReplyToScriptDialog(System.Int32,System.Int32,System.String,LibreMetaverse.UUID)", + "position": "parameter:buttonLabel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestScriptSensor(System.String,LibreMetaverse.UUID,LibreMetaverse.ScriptSensorTypeFlags,System.Single,System.Single,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:fromName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:subject", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:toEmail", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLure(LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetAgentAccessAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:access", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetDisplayNameAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetDisplayNameAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:oldName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePermissionAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:permission", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:simName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:simName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportFailedEventHandler(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "position": "parameter:messageKey", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateAgentLanguageAsync(System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:language", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Vector3d,System.String,System.String,System.Boolean)", + "position": "parameter:desc", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Vector3d,System.String,System.String,System.Boolean)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,System.String,System.String,System.Boolean)", + "position": "parameter:desc", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,System.String,System.String,System.Boolean)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateMuteListEntry(LibreMetaverse.MuteType,LibreMetaverse.UUID,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateMuteListEntry(LibreMetaverse.MuteType,LibreMetaverse.UUID,System.String,LibreMetaverse.MuteFlags)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotes(LibreMetaverse.UUID,System.String)", + "position": "parameter:notes", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotesAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:notes", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AlertMessageEventArgs.#ctor(System.String,System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AlertMessageEventArgs.#ctor(System.String,System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:notificationid", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animations.ToDictionary", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.EvaluatePose(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose})", + "position": "parameter:pose", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshPlayer.EvaluatePose", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AnimeshSkinning.ComputeSkinningMatrices(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose},LibreMetaverse.Rendering.LindenSkeleton,LibreMetaverse.Rendering.MeshSkinData)", + "position": "parameter:pose", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CreateFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.FindNodeByName(LibreMetaverse.InventoryNode,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.SetInitialOutfitAsync(System.String,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "parameter:outfit", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.Permissions,System.UInt32,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.Permissions,System.UInt32,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.TextureData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.WearableData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManagerException.#ctor(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.AssetFileName(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.BeginInvoke(System.String,LibreMetaverse.UUID,System.AsyncCallback,System.Object)", + "position": "parameter:cacheDir", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.Invoke(System.String,LibreMetaverse.UUID)", + "position": "parameter:cacheDir", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.ComputeAssetCacheFilenameDelegate.Invoke(System.String,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.AssetTypeToString(LibreMetaverse.AssetType)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetXfer(System.String,System.Boolean,System.Boolean,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestServerBakedImageAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:bakeName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.ToJson", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.#ctor(System.String)", + "position": "parameter:xmlData", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.DecodeXml(System.String)", + "position": "parameter:xmlData", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.EncodeXml", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GestureStepAnimation.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GestureStepChat.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GestureStepEOF.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GestureStepSound.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.GestureStepWait.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.Load(System.Byte[],System.Func{System.String,System.Byte[]})", + "position": "parameter:bufferLoader", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGltf(System.String,System.Func{System.String,System.Byte[]})", + "position": "parameter:bufferLoader", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.LoadGltf(System.String,System.Func{System.String,System.Byte[]})", + "position": "parameter:json", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.ToJson(System.Boolean)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.ClearAssetFolder(System.String)", + "position": "parameter:assetsPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.PackageArchive(System.String,System.String)", + "position": "parameter:directoryName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.PackageArchive(System.String,System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,System.Collections.Generic.IList{LibreMetaverse.UUID},System.String)", + "position": "parameter:assetsPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveParcels(LibreMetaverse.Simulator,System.String)", + "position": "parameter:parcelPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SavePrimsAsync(LibreMetaverse.AssetManager,System.Collections.Generic.IList{LibreMetaverse.Assets.AssetPrim},System.String,System.String)", + "position": "parameter:assetsPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SavePrimsAsync(LibreMetaverse.AssetManager,System.Collections.Generic.IList{LibreMetaverse.Assets.AssetPrim},System.String,System.String)", + "position": "parameter:primsPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveRegionSettings(LibreMetaverse.Simulator,System.String)", + "position": "parameter:settingsPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveSimAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String)", + "position": "parameter:assetsPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveTerrain(LibreMetaverse.Simulator,System.String)", + "position": "parameter:terrainPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.BeginInvoke(System.String,LibreMetaverse.Assets.RegionSettings,System.AsyncCallback,System.Object)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.Invoke(System.String,LibreMetaverse.Assets.RegionSettings)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.UnpackageArchive(System.String,LibreMetaverse.Assets.OarFile.AssetLoadedCallback,LibreMetaverse.Assets.OarFile.TerrainLoadedCallback,LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,LibreMetaverse.Assets.OarFile.SettingsLoadedCallback)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.RegionSettings.ToXML(System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.ReadEntry(System.String@,LibreMetaverse.Assets.TarArchiveReader.TarEntryType@)", + "position": "parameter:filePath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteDir(System.String)", + "position": "parameter:dirName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.Byte[])", + "position": "parameter:filePath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.String)", + "position": "parameter:data", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.String)", + "position": "parameter:filePath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.GetPlaybackDevices", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.GetRecordingDevices", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayFileLoop(System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayFileOnce(System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetPlaybackDevice(System.String)", + "position": "parameter:deviceName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetRecordingDevice(System.String)", + "position": "parameter:deviceName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartFilePlayback(System.String,System.Boolean)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmFileLoop(System.String,System.Int32,System.Boolean)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarClassifiedReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:classifieds", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNameSearch(System.String,LibreMetaverse.UUID)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarNotesReplyEventArgs.#ctor(LibreMetaverse.UUID,System.String)", + "position": "parameter:notes", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarPickerReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:avatars", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarPicksReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:picks", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.BinBVHAnimationReader.ReadBytesUntilNull(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackString(System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.CallingCardOfferedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "position": "parameter:agentName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.Capabilities", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.CapabilityNameFromURI(System.Uri)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.CapabilityURI(System.String)", + "position": "parameter:capability", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.BeginInvoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator,System.AsyncCallback,System.Object)", + "position": "parameter:capsKey", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.Invoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "position": "parameter:capsKey", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsEventDictionary.RegisterEvent(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "parameter:capsEvent", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsEventDictionary.UnregisterEvent(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "parameter:capsEvent", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.RegisterCapUri(System.String,System.Uri)", + "position": "parameter:capName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatEventArgs.#ctor(LibreMetaverse.Simulator,System.String,LibreMetaverse.ChatAudibleLevel,LibreMetaverse.ChatType,LibreMetaverse.ChatSourceType,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "position": "parameter:fromName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatEventArgs.#ctor(LibreMetaverse.Simulator,System.String,LibreMetaverse.ChatAudibleLevel,LibreMetaverse.ChatType,LibreMetaverse.ChatSourceType,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ChatEventArgs.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToRGBString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.AgentSearchData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.Classified.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.DirectoryParcel.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.EventInfo.ToSLurl", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.EventInfo.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.EventsSearchData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.GroupSearchData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.PlacesSearchData.ToSLurl", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.PlacesSearchData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchClassifiedsAsync(System.String,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.DirectoryManager.ClassifiedQueryFlags,System.Threading.CancellationToken)", + "position": "parameter:query", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchDirPlacesAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Threading.CancellationToken)", + "position": "parameter:query", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchEventsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,LibreMetaverse.DirectoryManager.EventCategories,System.Threading.CancellationToken)", + "position": "parameter:eventDay", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchEventsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,LibreMetaverse.DirectoryManager.EventCategories,System.Threading.CancellationToken)", + "position": "parameter:query", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchGroupsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.Threading.CancellationToken)", + "position": "parameter:query", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPeopleAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPlacesAsync(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:query", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPlacesAsync(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:simulatorName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartClassifiedSearch(System.String)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartClassifiedSearch(System.String,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.DirectoryManager.ClassifiedQueryFlags)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartDirPlacesSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Int32)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartDirPlacesSearch(System.String,System.Int32)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,System.UInt32,LibreMetaverse.DirectoryManager.EventCategories)", + "position": "parameter:eventDay", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,System.UInt32,LibreMetaverse.DirectoryManager.EventCategories)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,System.UInt32)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartGroupSearch(System.String,System.Int32)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartGroupSearch(System.String,System.Int32,LibreMetaverse.DirectoryManager.DirFindFlags)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartPeopleSearch(System.String,System.Int32)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "parameter:simulatorName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartPlacesSearch(System.String)", + "position": "parameter:searchText", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisconnectedEventArgs.#ctor(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisplayNameUpdateEventArgs.#ctor(System.String,LibreMetaverse.AgentDisplayName)", + "position": "parameter:oldDisplayName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:actionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeCancelAndDispose(System.Threading.CancellationTokenSource,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:resourceName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnumInfoAttribute.#ctor(System.String)", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnumInfoExtensions.GetText(System.Enum)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateCovenantReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int64,System.String,LibreMetaverse.UUID)", + "position": "parameter:estateName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateMessage(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:listParams", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:method", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.String)", + "position": "parameter:method", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.String)", + "position": "parameter:param", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.LandStatRequest(System.Int32,LibreMetaverse.EstateTools.LandStatReportType,System.UInt32,System.String)", + "position": "parameter:filter", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoAsync(System.String,System.Single,LibreMetaverse.RegionFlags,System.Threading.CancellationToken)", + "position": "parameter:estateName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoDataserver(System.String,System.Single,LibreMetaverse.RegionFlags)", + "position": "parameter:estateName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendSimConsoleCommandAsync(System.String,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:command", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendSimConsoleCommandAsync(System.String,System.TimeSpan,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SimulatorMessage(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.UploadTerrain(System.Byte[],System.String)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateUpdateInfoReplyEventArgs.#ctor(System.String,LibreMetaverse.UUID,System.UInt32,LibreMetaverse.RegionFlags,System.Int32)", + "position": "parameter:estateName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.SafeDirName(System.String)", + "position": "parameter:original", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.SafeDirName(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.SafeFileName(System.String)", + "position": "parameter:original", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.SafeFileName(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.Sanitize(System.String,System.Char[],System.Char)", + "position": "parameter:input", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.Sanitize(System.String,System.Char[],System.Char)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.TryParseTwoNames(System.String,System.String@,System.String@)", + "position": "parameter:first", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.TryParseTwoNames(System.String,System.String@,System.String@)", + "position": "parameter:input", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FileHelper.TryParseTwoNames(System.String,System.String@,System.String@)", + "position": "parameter:last", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FindObjectByPathReplyEventArgs.#ctor(System.String,LibreMetaverse.UUID)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendInfo.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendNamesEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:names", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.OfferFriendship(LibreMetaverse.UUID,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendshipOfferedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "position": "parameter:agentName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendshipResponseEventArgs.#ctor(LibreMetaverse.UUID,System.String,System.Boolean)", + "position": "parameter:agentName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendshipTerminatedEventArgs.#ctor(LibreMetaverse.UUID,System.String)", + "position": "parameter:agentName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Genepool.FindIndex(System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridClient.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.String,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapRegion(System.String,LibreMetaverse.GridLayerType)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridRegion.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Group.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupChatJoinedEventArgs.#ctor(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:sessionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupCreatedReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupInvitationEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.String,System.String)", + "position": "parameter:agentName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupInvitationEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.String,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupNamesEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:groupNames", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupRole.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupTitle.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.FloatToTerseString(System.Single)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String)", + "position": "parameter:resourceName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String,System.String)", + "position": "parameter:resourceName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GetResourceStream(System.String,System.String)", + "position": "parameter:searchPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:actionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "parameter:logger", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SplitBy(System.String,System.Int32)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SplitBy(System.String,System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.StructToString(System.Object)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadRequest.#ctor(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.BeginInvoke(System.String,LibreMetaverse.StructuredData.OSDMap,System.AsyncCallback,System.Object)", + "position": "parameter:eventName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.Invoke(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:eventName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:contentType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Baker.LoadResourceLayer(System.String)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Targa.DecodeToManagedImage(System.String)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertBoolArray(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertDoubleArray(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Boolean[])", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Double[])", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.Int64[])", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.String[])", + "position": "parameter:values", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertFromArray(System.String[])", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertLongArray(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertNameArray(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.Collada14.COLLADA.ConvertNameArray(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ColladaLoader.Load(System.String,System.Boolean)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.#ctor(LibreMetaverse.GridClient,System.Collections.Generic.List{LibreMetaverse.ImportExport.ModelPrim},System.String,System.String)", + "position": "parameter:newInvDesc", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.#ctor(LibreMetaverse.GridClient,System.Collections.Generic.List{LibreMetaverse.ImportExport.ModelPrim},System.String,System.String)", + "position": "parameter:newInvName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InitiateDownloadEventArgs.#ctor(System.String,System.String)", + "position": "parameter:simFilename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InitiateDownloadEventArgs.#ctor(System.String,System.String)", + "position": "parameter:viewerFilename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InstantMessage.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RestoreFromDisk(System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RestoreFromDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.SaveToDisk(System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.SaveToDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryChildrenAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryChildrenAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryLinksAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryException.#ctor(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryException.#ctor(System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateFolder(LibreMetaverse.UUID,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateFolder(LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.WearableType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.WearableType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinkAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.InventoryType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinkAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.InventoryType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "parameter:linksToCreate", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:folderName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveItem(LibreMetaverse.UUID,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:itemName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.LocalFind(LibreMetaverse.UUID,System.String[],System.Int32,System.Boolean)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.ParseTaskInventory(System.String)", + "position": "parameter:taskData", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:newName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:newNames", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:newNames", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UpdateFolderProperties(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryNode.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoadUrlEventArgs.#ctor(System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.String,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoadUrlEventArgs.#ctor(System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.String,System.String)", + "position": "parameter:objectName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoadUrlEventArgs.#ctor(System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.String,System.String)", + "position": "parameter:url", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.SetLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.String)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String)", + "position": "parameter:first", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String)", + "position": "parameter:last", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String)", + "position": "parameter:passwd", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:first", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:last", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:mfaHash", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:passwd", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginCredential.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:token", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginException.#ctor(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginException.#ctor(System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String,System.String)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String,System.String)", + "position": "parameter:loginUri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,LibreMetaverse.LoginCredential,System.String,System.String,System.String)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:loginURI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginParams.#ctor(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginProgressEventArgs.#ctor(LibreMetaverse.LoginStatus,System.String,System.String)", + "position": "parameter:failReason", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginProgressEventArgs.#ctor(LibreMetaverse.LoginStatus,System.String,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventoryFolders(System.String,LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventorySkeleton(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseInventorySkeleton(System.String,System.Collections.Hashtable)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key2", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,System.Collections.Hashtable)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMappedUUID(System.String,System.String,System.Collections.Hashtable)", + "position": "parameter:key2", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseMessage.#ctor(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseResult.Add(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,System.Collections.Hashtable)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseString(System.String,System.Collections.Hashtable)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,System.Collections.Hashtable)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUUID(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUUID(System.String,System.Collections.Hashtable)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseVector3(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseVector3(System.String,System.Collections.Hashtable)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:y", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:yy", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:m", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:y", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.#ctor(System.Int32,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:y", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:yy", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:m", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:y", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.#ctor(System.Int32,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.Int32,System.String,System.String)", + "position": "parameter:y", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.Lexer,System.String,System.String)", + "position": "parameter:yy", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:m", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.SourceLineInfo,System.String,System.String)", + "position": "parameter:y", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,LibreMetaverse.LslTools.TOKEN,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.#ctor(System.Int32,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.Matches(System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.TypeStr", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Charset.GetEncoding(System.String,System.Boolean@,LibreMetaverse.LslTools.ErrorHandler)", + "position": "parameter:enc", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(System.String)", + "position": "parameter:data", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(System.String,System.Text.Encoding)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.ReadLine", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Match(System.String,System.Int32,System.Int32@)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Error.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:b", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:bas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:defbas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.EmitClassDefin(System.String,System.Int32@,System.Int32,LibreMetaverse.LslTools.CsReader,System.String,System.String@,System.String@,System.Boolean)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.Error(System.Int32,System.Int32,System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.NonWhite(System.String,System.Int32@,System.Int32)", + "position": "parameter:buf", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.Saypos(System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.White(System.String,System.Int32@,System.Int32)", + "position": "parameter:buf", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Saypos(System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(System.String)", + "position": "parameter:buf", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.sourceLine(LibreMetaverse.LslTools.SourceLineInfo)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.yy_begin(System.String)", + "position": "parameter:newstate", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Literal.TypeStr", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Null.#ctor(LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:proxy", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Null.#ctor(LibreMetaverse.LslTools.Parser,System.String)", + "position": "parameter:proxy", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Parser.Error(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Parser.Parse(System.String)", + "position": "parameter:buf", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.TypeStr", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParsingInfo.#ctor(System.String,System.Int32)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.StackRef(System.String@,System.Int32,System.Int32)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.#ctor(LibreMetaverse.LslTools.TokensGen,System.Int32,System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Match(System.String,System.Int32,System.Int32)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ResWds.New(LibreMetaverse.LslTools.TokensGen,System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Matches(System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Sfactory.#ctor(LibreMetaverse.LslTools.YyParser,System.String,LibreMetaverse.LslTools.SCreator)", + "position": "parameter:cls_name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Sfactory.create(System.String,LibreMetaverse.LslTools.Parser)", + "position": "parameter:cls_name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SourceLineInfo.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolType.#ctor(LibreMetaverse.LslTools.SymbolsGen,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolType.#ctor(LibreMetaverse.LslTools.SymbolsGen,System.String,System.Boolean)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolType._Find(System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.ClassDefinition(System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.#ctor(LibreMetaverse.LslTools.Lexer,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.Matches(System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Tfactory.#ctor(LibreMetaverse.LslTools.YyLexer,System.String,LibreMetaverse.LslTools.TCreator)", + "position": "parameter:cls_name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Tfactory.create(System.String,LibreMetaverse.LslTools.Lexer)", + "position": "parameter:cls_name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokClassDef.#ctor(LibreMetaverse.LslTools.GenBase,System.String,System.String)", + "position": "parameter:bas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokClassDef.#ctor(LibreMetaverse.LslTools.GenBase,System.String,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokensGen.FixActions(System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TokensGen.FixActions(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.Print(LibreMetaverse.LslTools.SymbolSet,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "position": "parameter:yytext", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.GetSymbolInfo(System.String,System.Int32)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.PrintTransitions(LibreMetaverse.LslTools.Func,System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.recoveredError.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.yycs0tokens.OldAction(LibreMetaverse.LslTools.Lexer,System.String@,System.Int32,System.Boolean@)", + "position": "parameter:yytext", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.#ctor(System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.CreateListingAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.DecodeEvent(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:eventName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromDictionaryString(System.Collections.Generic.Dictionary{System.String,System.String})", + "position": "parameter:dict", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToDictionaryString(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.MoneyBalanceReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32,System.Int32,System.String,LibreMetaverse.TransactionInfo)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.#ctor(System.String)", + "position": "parameter:data", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.#ctor(System.String,LibreMetaverse.NameValue.ValueType,LibreMetaverse.NameValue.ClassType,LibreMetaverse.NameValue.SendtoType,System.Object)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NameValue.NameValuesToString(LibreMetaverse.NameValue[])", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DefaultLoginParams(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DefaultLoginParams(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DefaultLoginParams(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DefaultLoginParams(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DefaultLoginParams(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.GetHashedMAC", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.GetMAC", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.GetPlatform", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.GetPlatformVersion", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:start", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:start", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.BeginInvoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData,System.AsyncCallback,System.Object)", + "position": "parameter:reason", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "position": "parameter:reason", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:start", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:channel", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:start", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterEventCallback(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "parameter:capsEvent", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback,System.String[])", + "position": "parameter:options", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Shutdown(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ShutdownAsync(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.StartLocation(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:sim", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.StartLocation(System.String,System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.UnregisterEventCallback(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "parameter:capsEvent", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.NavigateObjectMediaAsync(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:newURL", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetDescription(LibreMetaverse.Simulator,System.UInt32,System.String)", + "position": "parameter:description", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetDescriptions(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "position": "parameter:descriptions", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetName(LibreMetaverse.Simulator,System.UInt32,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetNames(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "position": "parameter:names", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry,System.String)", + "position": "parameter:mediaUrl", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectMediaEventArgs.#ctor(System.Boolean,System.String,LibreMetaverse.MediaEntry[])", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MalformedDataException.#ctor(System.String)", + "position": "parameter:Message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacket(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:capsEventName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.BuildPacketFromOSD(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "parameter:capsEventName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromXmlString(System.String)", + "position": "parameter:xml", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.ToXmlString(LibreMetaverse.Packets.Packet)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketDecoder.InterpretOptions(LibreMetaverse.Packets.Header)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketDecoder.MessageToString(System.Object,System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketDecoder.PacketToString(LibreMetaverse.Packets.Packet)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Parcel.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatCoordinates(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.FormatRegionCoordinates(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Coord.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ObjMesh.#ctor(System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:title", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.ParamsToDisplayString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:title", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Quat.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.#ctor(System.String,LibreMetaverse.Imaging.ITextureCodec,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.DumpRaw(System.String,System.String,System.String)", + "position": "parameter:title", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.SculptMeshFromFile(System.String,LibreMetaverse.Imaging.ITextureCodec,LibreMetaverse.PrimMesher.SculptMesh.SculptType,System.Int32,System.Boolean)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightData.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.LightImage.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntryFace.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.#ctor(System.String,LibreMetaverse.GridClient)", + "position": "parameter:mapFile", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.Command(System.String)", + "position": "parameter:command", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.DecodeMapFile(System.String,System.String)", + "position": "parameter:mapFile", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.DecodeMapFile(System.String,System.String)", + "position": "parameter:outputFile", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.Parse(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ToRawString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.TryParse(System.String,LibreMetaverse.Quaternion@)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingValue", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingValue", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:roleName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:groupName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:roleName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryBuildPathToFolder(System.Guid,System.String@)", + "position": "parameter:finalPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.InventoryMap.TryGetFolderFromPath(System.String,System.Boolean,LibreMetaverse.RLV.RlvSharedFolder@)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.LockedFolderPublic.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingValue", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:settingValue", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:roleName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:groupName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:roleName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.BlacklistBehavior(System.String)", + "position": "parameter:behavior", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.GetBlacklist", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.IsBlacklisted(System.String)", + "position": "parameter:behavior", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.UnBlacklistBehavior(System.String)", + "position": "parameter:behavior", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:settingName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCommon.TryGetAttachmentPointFromItemName(System.String,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint}@)", + "position": "parameter:itemName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.#ctor(System.Guid,System.String,System.Boolean,System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvInventoryItem.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanChat(System.Int32,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveChat(System.String,System.Guid)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:groupName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanReceiveIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:groupName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvPermissionsService.CanSendIM(System.String,System.Nullable{System.Guid},System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.#ctor(LibreMetaverse.RLV.RlvRestrictionType,System.Guid,System.String,System.Collections.Generic.ICollection{System.Object})", + "position": "parameter:senderName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestriction.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.FindRestrictions(System.String,System.Nullable{System.Guid})", + "position": "parameter:behaviorNameFilter", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessInstantMessageAsync(System.String,System.Guid,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:senderName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferAcceptedAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:folderPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferDeclinedAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:folderPath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSendPublicMessageAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.#ctor(System.Guid,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddChild(System.Guid,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.AddItem(System.Guid,System.String,System.Boolean,System.Nullable{LibreMetaverse.RLV.RlvAttachmentPoint},System.Nullable{System.Guid},System.Nullable{LibreMetaverse.RLV.RlvWearableType},System.Nullable{LibreMetaverse.RLV.RlvGestureState})", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvSharedFolder.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.BuildBoneWorldMatrices(LibreMetaverse.Rendering.LindenSkeleton,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "parameter:boneTransforms", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.BuildBoneWorldMatrices(LibreMetaverse.Rendering.LindenSkeleton,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:boneTransforms", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:rotDeltas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:boneTransforms", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:result", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:rotDeltas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:boneTransforms", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "parameter:rotDeltas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:boneTransforms", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:result", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "parameter:rotDeltas", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeGroundAdjustment(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform})", + "position": "parameter:boneTransforms", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetBonePositionProvider(System.Func{System.String,System.Numerics.Vector3})", + "position": "parameter:getBoneWorldPos", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadString(System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Face.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Joint.GetAliasesList", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.ComputeBoneTransforms(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.GetAttachmentPoint(System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.Load(System.String,System.String)", + "position": "parameter:ladFileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenAvatarDefinition.Load(System.String,System.String)", + "position": "parameter:skeletonFileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.#ctor(System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.#ctor(System.String,LibreMetaverse.Rendering.LindenSkeleton)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadLodMesh(System.Int32,System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadMesh(System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadReferenceMesh(System.Int32,System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.Morph.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.MorphVertex.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.LoadMesh(System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.TrimAt0(System.String)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.TrimAt0(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.Vertex.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.VertexRemap.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildExpandedJointList(System.Collections.Generic.IEnumerable{System.String})", + "position": "parameter:jointsFilter", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildExpandedJointList(System.Collections.Generic.IEnumerable{System.String})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.BuildJointDictionary", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.GetBone(System.String)", + "position": "parameter:nameOrAlias", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenSkeleton.Load(System.String)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Mesh.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.ComputeBoneOffsets(System.Collections.Generic.Dictionary{System.Int32,System.Single},System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.#ctor(System.String,System.Numerics.Vector3)", + "position": "parameter:BoneName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Deconstruct(System.String@,System.Numerics.Vector3@)", + "position": "parameter:BoneName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.ProfileFace.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RendererNameAttribute.#ctor(System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RendererNameAttribute.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingException.#ctor(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingException.#ctor(System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingLoader.ListRenderers(System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingLoader.ListRenderers(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RenderingLoader.LoadRenderer(System.String)", + "position": "parameter:filename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.ExtractJointPositionOverrides(LibreMetaverse.Rendering.MeshSkinData)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.Vertex.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:buttons", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptDialogEventArgs.#ctor(System.String,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,System.Int32,System.Collections.Generic.List{System.String},LibreMetaverse.UUID)", + "position": "parameter:objectName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptQuestionEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.ScriptPermission)", + "position": "parameter:objectName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptQuestionEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.ScriptPermission)", + "position": "parameter:objectOwner", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.ScriptSensorReplyEventArgs.#ctor(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3,System.Single,LibreMetaverse.Quaternion,LibreMetaverse.ScriptSensorTypeFlags,LibreMetaverse.Vector3)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SetDisplayNameReplyEventArgs.#ctor(System.Int32,System.String,LibreMetaverse.AgentDisplayName)", + "position": "parameter:reason", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.Get(System.String)", + "position": "parameter:feature", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.Has(System.String)", + "position": "parameter:feature", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SkeletalBoneInfo.#ctor(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:boneName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.#ctor(System.String)", + "position": "parameter:location", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetAgentUrl(LibreMetaverse.UUID,System.String)", + "position": "parameter:action", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetAgentUrl(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetGroupUrl(LibreMetaverse.UUID,System.String)", + "position": "parameter:action", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetGroupUrl(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetLoginUrl(System.String,System.String,System.String)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetLoginUrl(System.String,System.String,System.String)", + "position": "parameter:location", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetLoginUrl(System.String,System.String,System.String)", + "position": "parameter:sessionId", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetLoginUrl(System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetObjectImUrl(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.String)", + "position": "parameter:objectName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetObjectImUrl(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.String)", + "position": "parameter:slurl", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetObjectImUrl(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetRawLocation", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSearchUrl(System.String,System.String)", + "position": "parameter:category", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSearchUrl(System.String,System.String)", + "position": "parameter:searchTerm", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSearchUrl(System.String,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSlappUrl(LibreMetaverse.SlappCommand,System.String,System.Collections.Generic.Dictionary{System.String,System.String})", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSlappUrl(LibreMetaverse.SlappCommand,System.String,System.Collections.Generic.Dictionary{System.String,System.String})", + "position": "parameter:queryParams", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSlappUrl(LibreMetaverse.SlappCommand,System.String,System.Collections.Generic.Dictionary{System.String,System.String})", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetSlurl", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetStartLocationUri", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetTeleportUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:region", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetTeleportUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetWorldMapUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "parameter:region", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.SlurlParser.GetWorldMapUrl(System.String,System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Sounds.ToDictionary", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Stats.UtilizationStatistics.GetStatistics", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromString(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.String", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.String)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Contains(System.String)", + "position": "parameter:element", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBoolean.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDException.#ctor(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDException.#ctor(System.String,System.Exception)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.#ctor(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDLlsdXml.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.#ctor(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:kvp", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.String,LibreMetaverse.StructuredData.OSD)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Contains(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:kvp", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ContainsKey(System.String)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.CopyTo(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD}[],System.Int32)", + "position": "parameter:array", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "parameter:kvp", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Remove(System.String)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.TryGetValue(System.String,LibreMetaverse.StructuredData.OSD@)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.Deserialize(System.String)", + "position": "parameter:data", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeJson(System.String)", + "position": "parameter:json", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDNotation(System.String)", + "position": "parameter:notationData", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.String)", + "position": "parameter:xmlData", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.EscapeCharacter(System.String,System.Char)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.EscapeCharacter(System.String,System.Char)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.FindString(System.IO.Stream,System.String)", + "position": "parameter:toFind", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.GetStringDelimitedBy(System.IO.StringReader,System.Char)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeJsonString(LibreMetaverse.StructuredData.OSD,System.Boolean)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDInnerXmlString(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotation(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDNotationFormatted(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlString(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.UnescapeCharacter(System.String,System.Char)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.UnescapeCharacter(System.String,System.Char)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.#ctor(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUUID.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUri.AsString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUri.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.TaskInventoryReplyEventArgs.#ctor(LibreMetaverse.UUID,System.Int16,System.String)", + "position": "parameter:assetFilename", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.TeleportEventArgs.#ctor(System.String,LibreMetaverse.TeleportStatus,LibreMetaverse.TeleportFlags)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.#ctor(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.Parse(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.TryParse(System.String,LibreMetaverse.UUID@)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.op_Explicit(System.String)~LibreMetaverse.UUID", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUIDNameReplyEventArgs.#ctor(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.String})", + "position": "parameter:names", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:author", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:firstName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:lastName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:start", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:userAgent", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.ChatAsync(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.AssetTypeToString(LibreMetaverse.AssetType)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.Int32,System.String)", + "position": "parameter:fieldName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.Int32,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.String)", + "position": "parameter:fieldName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToHexString(System.Byte[],System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[])", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToString(System.Byte[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.EnumToText(System.Enum)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.EnumTryParse\u0060\u00601(System.String,\u0060\u00600@)", + "position": "parameter:strType", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FolderTypeToString(LibreMetaverse.FolderType)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.HexStringToBytes(System.String,System.Boolean)", + "position": "parameter:hexString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.HostnameToIPv4(System.String)", + "position": "parameter:hostname", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.InventoryTypeToString(LibreMetaverse.InventoryType)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.MD5(System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.MD5(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.MD5String(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.MD5String(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.PBKDF2(System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.PBKDF2(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA1String(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA1String(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA256String(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SHA256String(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.SaleTypeToString(LibreMetaverse.SaleType)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToAssetType(System.String)", + "position": "parameter:type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToAttachmentPoint(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToBytes(System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToFolderType(System.String)", + "position": "parameter:type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToInventoryType(System.String)", + "position": "parameter:type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.StringToSaleType(System.String)", + "position": "parameter:value", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseDouble(System.String,System.Double@)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseHex(System.String,System.UInt32@)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseSingle(System.String,System.Single@)", + "position": "parameter:s", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToHexString(System.UInt32)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Parse(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ToRawString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.TryParse(System.String,LibreMetaverse.Vector2@)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.Parse(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ToRawString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.TryParse(System.String,LibreMetaverse.Vector3@)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Parse(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ToRawString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.TryParse(System.String,LibreMetaverse.Vector3d@)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Parse(System.String)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ToRawString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ToString", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.TryParse(System.String,LibreMetaverse.Vector4@)", + "position": "parameter:val", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualAlphaParam.#ctor(System.Single,System.String,System.Boolean,System.Boolean)", + "position": "parameter:tgaFile", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:label", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:labelMax", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:labelMin", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParam.#ctor(System.Int32,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Boolean,System.Int32[],System.Nullable{LibreMetaverse.VisualAlphaParam},System.Nullable{LibreMetaverse.VisualColorParam},LibreMetaverse.DrivenParamInfo[],LibreMetaverse.SkeletalBoneInfo[],LibreMetaverse.VolumeMorphInfo[])", + "position": "parameter:wearable", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParams.Find(System.String,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VisualParams.Find(System.String,System.String)", + "position": "parameter:wearable", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.Connect(System.String,System.Int32)", + "position": "parameter:address", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.BeginInvoke(System.String,System.AsyncCallback,System.Object)", + "position": "parameter:line", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.Invoke(System.String)", + "position": "parameter:line", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.SendLine(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:AccountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:AccountPassword", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:AccountURI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:AudioSessionAnswerMode", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogin(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Boolean)", + "position": "parameter:ConnectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState)", + "position": "parameter:AccountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLoginStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.LoginState)", + "position": "parameter:StatusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AccountLogout(System.String)", + "position": "parameter:AccountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetCaptureDevice(System.String)", + "position": "parameter:captureDeviceSpecifier", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.AuxSetRenderDevice(System.String)", + "position": "parameter:renderDeviceSpecifier", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectToDaemon(System.String,System.Int32)", + "position": "parameter:address", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorCreate(System.String,System.String,System.UInt16,System.UInt16,LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings)", + "position": "parameter:accountManagementServer", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorCreate(System.String,System.String,System.UInt16,System.UInt16,LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings)", + "position": "parameter:clientName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorInitiateShutdown(System.String)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalMic(System.String,System.Boolean)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorMuteLocalSpeaker(System.String,System.Boolean)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalMicVolume(System.String,System.Int32)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorSetLocalSpeakerVolume(System.String,System.Int32)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.MakeXML(System.String,System.String)", + "position": "parameter:name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.MakeXML(System.String,System.String)", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.MakeXML(System.String,System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "position": "parameter:AccountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "position": "parameter:AudioMedia", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "position": "parameter:Name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.NewSessionEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.String,System.String)", + "position": "parameter:URI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "position": "parameter:AccountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "position": "parameter:Application", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "position": "parameter:DisplayName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "position": "parameter:ParticipantUri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "position": "parameter:SessionGroupHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantAddedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType,System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:ParticipantURI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantPropertiesEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:AccountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:ParticipantUri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:Reason", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:SessionGroupHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantRemovedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "position": "parameter:AccountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "position": "parameter:DisplayName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "position": "parameter:ParticipantURI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantState,System.String,System.String,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantType)", + "position": "parameter:StatusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:URI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ParticipantUpdatedEventArgs.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:sessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String)", + "position": "parameter:action", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String,System.String)", + "position": "parameter:action", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Request(System.String,System.String)", + "position": "parameter:requestXML", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SIPFromUUID(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean)", + "position": "parameter:sessionGroupHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean)", + "position": "parameter:sessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionAddedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean)", + "position": "parameter:uri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionConnect(System.String,System.String)", + "position": "parameter:AudioMedia", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionConnect(System.String,System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:AccountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:Name", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:Password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:PasswordHashAlgorithm", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionCreate(System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String)", + "position": "parameter:session_uri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.#ctor(System.String,System.String,System.String)", + "position": "parameter:acctHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.#ctor(System.String,System.String,System.String)", + "position": "parameter:sessionGroupHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionGroupAddedEventArgs.#ctor(System.String,System.String,System.String)", + "position": "parameter:type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionMediaEventArgs.#ctor(System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.#ctor(System.String,System.String,System.String)", + "position": "parameter:SessionGroupHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.#ctor(System.String,System.String,System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRemovedEventArgs.#ctor(System.String,System.String,System.String)", + "position": "parameter:Uri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStart(System.String,System.Boolean)", + "position": "parameter:soundFilePath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionRenderAudioStop(System.String)", + "position": "parameter:SoundFilePath", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSet3DPosition(System.String,LibreMetaverse.Voice.Vivox.VoicePosition,LibreMetaverse.Voice.Vivox.VoicePosition)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSetParticipantVolumeForMe(System.String,System.String,System.Int32)", + "position": "parameter:ParticipantURI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionSetParticipantVolumeForMe(System.String,System.String,System.Int32)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "position": "parameter:ChannelName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "position": "parameter:StatusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionStateChangeEventArgs.#ctor(System.String,System.Int32,System.String,LibreMetaverse.Voice.Vivox.VoiceGateway.SessionState,System.String,System.Boolean,System.String)", + "position": "parameter:URI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionTerminate(System.String)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:SessionGroupHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:SessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.SessionUpdatedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean)", + "position": "parameter:URI", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.StartDaemon(System.String,System.String)", + "position": "parameter:args", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.StartDaemon(System.String,System.String)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:ahandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String,System.String)", + "position": "parameter:handle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String,System.String)", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String,System.String)", + "position": "parameter:version", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:avail", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:current", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String,System.String,System.Collections.Generic.List{System.String})", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceResponseEventArgs.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway.ResponseType,System.Int32,System.Int32,System.String)", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:shandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceSessionEventArgs.#ctor(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:text", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.Invoke(System.Int32,System.Int32,System.String)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CaptureDevices", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectToDaemon(System.String,System.Int32)", + "position": "parameter:address", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CreateConnector(System.Int32@)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CurrentCaptureDevices", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.CurrentRenderDevices", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:currentDevice", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:currentDevice", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.GetChannelMap", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Login(System.String,System.String,System.String,System.Int32@)", + "position": "parameter:accountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Login(System.String,System.String,System.String,System.Int32@)", + "position": "parameter:connectorHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Login(System.String,System.String,System.String,System.Int32@)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Login(System.String,System.String,System.String,System.Int32@)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:accountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:accountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:accountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "position": "parameter:accountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:accountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:eventSessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:nameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.BeginInvoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "parameter:accountHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "parameter:eventSessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "parameter:nameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:channelUri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.BeginInvoke(System.String,System.Int32,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.Invoke(System.String,System.Int32,System.String)", + "position": "parameter:channelUri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.Invoke(System.String,System.Int32,System.String)", + "position": "parameter:regionName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single,System.AsyncCallback,System.Object)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:displayNameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:nameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.AsyncCallback,System.Object)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:displayNameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:nameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.BeginInvoke(System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.BeginInvoke(System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:username", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.Invoke(System.String,System.String)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.Invoke(System.String,System.String)", + "position": "parameter:username", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RenderDevices", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestCreateConnector(System.String)", + "position": "parameter:voiceServer", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestLogin(System.String,System.String,System.String)", + "position": "parameter:accountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestLogin(System.String,System.String,System.String)", + "position": "parameter:connHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestLogin(System.String,System.String,System.String)", + "position": "parameter:password", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestRenderAudioStart(System.String,System.Boolean)", + "position": "parameter:fileName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.RequestSetRenderDevice(System.String)", + "position": "parameter:deviceName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:sessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.BeginInvoke(System.Int32,System.Int32,System.String,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:sessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:eventSessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:nameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.BeginInvoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String,System.AsyncCallback,System.Object)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:eventSessionHandle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:nameString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:statusString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "parameter:uriString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SipuriFromVoiceAccount(System.String)", + "position": "parameter:account", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SipuriFromVoiceAccount(System.String)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.UuidFromVoiceAccount(System.String)", + "position": "parameter:accountName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.VoiceAccountFromUuid(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceParticipant.#ctor(System.String,LibreMetaverse.Voice.Vivox.VoiceSession)", + "position": "parameter:puri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceParticipant.IDFromName(System.String)", + "position": "parameter:inName", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceSession.#ctor(LibreMetaverse.Voice.Vivox.VoiceGateway,System.String)", + "position": "parameter:handle", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Debug(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Error(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Info(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Warn(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Debug(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Error(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Info(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Warn(System.String,LibreMetaverse.GridClient)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessJsonElement(System.Text.Json.JsonElement,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:sendString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessOSDMap(LibreMetaverse.StructuredData.OSDMap,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:sendString", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceException.#ctor(System.String)", + "position": "parameter:msg", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceException.#ctor(System.String,System.Boolean)", + "position": "parameter:msg", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptP2PCallAsync(LibreMetaverse.UUID,System.String,System.String)", + "position": "parameter:channelUri", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptP2PCallAsync(LibreMetaverse.UUID,System.String,System.String)", + "position": "parameter:credentials", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayRawFile(System.String,System.Int32,System.Int32,System.Boolean)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayWavAsMic(System.String,System.Boolean)", + "position": "parameter:path", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SendDataChannelMessage(System.String)", + "position": "parameter:message", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.TrySendDataChannelString(System.String)", + "position": "parameter:str", + "signature": "System.String" + }, + { + "owner_doc_id": "M:LibreMetaverse.VolumeMorphInfo.#ctor(System.String,LibreMetaverse.Vector3,System.Boolean,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:boneName", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AccountLevelBenefits.EstateAccessToken", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentAccessEventArgs.NewLevel", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.FirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.GroupName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.GroupTitle", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDataReplyEventArgs.LastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.DisplayName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.LegacyFirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.LegacyFullName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.LegacyLastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentDisplayName.UserName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentAccess", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.FirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.LastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.StartLocation", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.TeleportMessage", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AlertMessageEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AlertMessageEventArgs.NotificationId", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.CurrentItemName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ArchetypeParam.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.AssetMaterial.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAccessor.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfAnimation.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBuffer.Uri", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfBufferView.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Copyright", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.ExtensionsRequired", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.ExtensionsUsed", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Generator", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.MinVersion", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocument.Version", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfDocumentMaterial.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.MimeType", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfImage.Uri", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfMesh.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfNode.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfPrimitive.Attributes", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSampler.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfScene.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfSkin.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Assets.Gltf.GltfTexture.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AttentionSet.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.PlaybackDevice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.RecordingDevice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.FirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.GroupName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.LastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Avatar.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarClassifiedReplyEventArgs.Classifieds", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarNotesReplyEventArgs.Notes", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarPickerReplyEventArgs.Avatars", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarPicksReplyEventArgs.Picks", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.CallingCardOfferedEventArgs.AgentName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ChatEventArgs.FromName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ChatEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.DisconnectedEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.DisplayNameUpdateEventArgs.OldDisplayName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateCovenantReplyEventArgs.EstateName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.EstateName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.FindObjectByPathReplyEventArgs.Path", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendInfo.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendNamesEventArgs.Names", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendshipOfferedEventArgs.AgentName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendshipResponseEventArgs.AgentName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendshipTerminatedEventArgs.AgentName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GenepoolArchetype.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GrassDefinition.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.RegionsReadOnly", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupChatJoinedEventArgs.SessionName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupCreatedReplyEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.FromName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupInvitationEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.GroupNamesEventArgs.GroupNames", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.COLLADA.base", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputGlobal.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputGlobal.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocal.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocal.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InstanceWithExtra.url", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.Values", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat3._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.TargetableFloat3.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.animation_clip.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.keywords", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.revision", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.subject", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.asset.title", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.author", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.authoring_tool", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.comments", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.copyright", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetContributor.source_data", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.assetUnit.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.box.half_extents", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.camera.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.capsule.radius", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_connect_param.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newarray_type.length", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_newparam.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setarray_type.length", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.program", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.bool4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.enum", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.fixed4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.half4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.int4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setparam_simple.string", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_setuser_type.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cg_surface_typeGeneratorName.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.channel.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.channel.target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeColor.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeParam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture.texcoord", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_color_or_texture_typeTexture.texture", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeFloat.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_float_or_param_typeParam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.common_newparam_type.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.controller.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.convex_mesh.convex_hull_of", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.cylinder.radius", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effect.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CG.platform", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechnique.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.draw", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePass.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShader.compiler_options", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBind.symbol", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderBindParam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderCompiler_target.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_CGTechniquePassShaderName.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMON.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_COMMONTechnique.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLES.platform", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechnique.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.color_clear", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.color_target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.depth_target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.draw", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePass.stencil_target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcFunc.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_funcValue.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassAlpha_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcDest.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassBlend_funcSrc.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_color.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_depth.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClear_stencil.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassClip_plane_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_logic_op_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_mask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassColor_material_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassCull_face_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_func.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_mask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_range.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDepth_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassDither_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_color.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_density.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_end.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_mode.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFog_start.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassFront_face.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_ambient.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_constant_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_diffuse.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_linear_attenutation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_ambient.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_model_two_side_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_position.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_quadratic_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_specular.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_cutoff.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_direction.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLight_spot_exponent.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLighting_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_smooth_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLine_width.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassLogic_op.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_ambient.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_diffuse.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_emission.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_shininess.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMaterial_specular.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassModel_view_matrix.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassMultisample_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassNormalize_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_distance_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_fade_threshold_size.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_max.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_size_min.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPoint_smooth_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassPolygon_offset_fill_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassProjection_matrix.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassRescale_normal_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_coverage_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_alpha_to_one_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassSample_coverage_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassScissor_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassShade_model.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcFunc.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcMask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_funcRef.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_mask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opFail.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZfail.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_opZpass.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassStencil_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniquePassTexture_pipeline_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.enum", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLESTechniqueSetparam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSL.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechnique.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.draw", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePass.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcFunc.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_funcValue.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAlpha_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassAuto_normal_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_color.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateAlpha.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_equation_separateRgb.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcDest.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_funcSrc.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_alpha.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateDest_rgb.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_alpha.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassBlend_func_separateSrc_rgb.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_color.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_depth.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClear_stencil.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassClip_plane_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_logic_op_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_mask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialFace.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_materialMode.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassColor_material_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassCull_face_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_bounds_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_clamp_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_func.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_mask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_range.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDepth_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassDither_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_color.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_coord_src.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_density.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_end.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_mode.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFog_start.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassFront_face.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_ambient.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_constant_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_diffuse.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_linear_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_ambient.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_color_control.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_local_viewer_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_model_two_side_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_position.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_quadratic_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_specular.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_cutoff.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_direction.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLight_spot_exponent.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLighting_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_smooth_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_stipple_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLine_width.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassLogic_op_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_ambient.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_diffuse.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_emission.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_shininess.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMaterial_specular.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassModel_view_matrix.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassMultisample_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassNormalize_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_distance_attenuation.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_fade_threshold_size.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_max.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_size_min.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPoint_smooth_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeFace.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_modeMode.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_fill_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_line_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_offset_point_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_smooth_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassPolygon_stipple_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassProjection_matrix.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassRescale_normal_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_coverage_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_alpha_to_one_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassSample_coverage_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassScissor_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShade_model.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShader.compiler_options", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBind.symbol", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderBindParam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderCompiler_target.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassShaderName.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcFunc.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcMask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_funcRef.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateBack.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateFront.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateMask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_func_separateRef.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateFace.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_mask_separateMask.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opFail.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZfail.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_opZpass.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFace.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateFail.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZfail.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_op_separateZpass.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassStencil_test_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture1D_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture2D_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture3D_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureCUBE_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureDEPTH_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTextureRECT_enable.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_color.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.effectFx_profile_abstractProfile_GLSLTechniquePassTexture_env_mode.value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.ellipsoid.size", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.extra.type", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.force_field.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_annotate_common.string", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearcolor_common.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_cleardepth_common.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_clearstencil_common.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_code_profile.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_code_profile.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.mip", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_colortarget_common.slice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.mip", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_depthtarget_common.slice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_include_common.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_include_common.url", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.enum", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_newparam_common.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.border_color", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler1D_common.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.border_color", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler2D_common.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.border_color", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_sampler3D_common.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.border_color", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerCUBE_common.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerDEPTH_common.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.border_color", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_samplerRECT_common.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.index", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.mip", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_stenciltarget_common.slice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.format", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonAll.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonFace.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_cube_commonPrimary.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_planar_commonAll.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonAll.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_volume_commonPrimary.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.geometry.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.enum", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_newparam.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_sampler_state.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentAlpha_type.unit", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texcombiner_argumentRGB_type.unit", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texenv_command_type.unit", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_constant_type.param", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_pipeline.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.sampler_state", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unit.surface", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.gles_texture_unitTexcoord.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newarray_type.length", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_newparam.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setarray_type.length", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.program", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.enum", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_setparam_simple.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.glsl_surface_typeGeneratorName.source", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.format", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.skeleton", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_controller.url", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effect.url", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.bool4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.enum", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float1x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float2x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float3x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.float4x4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int3", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.int4", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectSetparam.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.platform", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.profile", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_effectTechnique_hint.ref", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_geometry.url", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.symbol", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_material.target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind.target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.input_semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.parent", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_physics_model.url", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.body", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_body.target", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.angular_velocity", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_common.velocity", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonDynamic.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_bodyTechnique_commonShapeHollow.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.constraint", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_rigid_constraint.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.maxInclusive", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.minInclusive", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animation_clips.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_animations.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_cameras.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_controllers.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_effects.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_force_fields.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_geometries.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_images.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_lights.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_materials.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_nodes.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_materials.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_models.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_physics_scenes.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.library_visual_scenes.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.light.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lookat._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lookat.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.material.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.matrix._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.matrix.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.morph.source1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.layer", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.node.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.Value", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.semantic", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.param.type", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_material.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_model.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.physics_scene.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.plane.equation", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygonsPH.h", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygonsPH.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.vcount", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_body.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonDynamic.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_bodyTechnique_commonShapeHollow.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraint.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintAttachment.rigid_body", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintRef_attachment.rigid_body", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonEnabled.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rigid_constraintTechnique_commonInterpenetrate.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rotate._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.rotate.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.sampler.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skew._Text_", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skew.sid", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.bind_shape_matrix", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skin.source1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.v", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.vcount", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.source.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.radius1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_capsule.radius2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.radius1", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tapered_cylinder.radius2", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.technique.profile", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.material", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.p", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.vertices.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.vertices.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.id", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_scene.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_scene.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender.camera_node", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.visual_sceneEvaluate_sceneRender.layer", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.InitiateDownloadEventArgs.SimFileName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.InitiateDownloadEventArgs.ViewerFileName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryBase.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryItem.Description", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.CreateItemFromAssetResult.Status", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoadUrlEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoadUrlEventArgs.ObjectName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoadUrlEventArgs.URL", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginCredential.FirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginCredential.LastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginCredential.MfaHash", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginCredential.Password", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginCredential.Token", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginProgressEventArgs.FailReason", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginProgressEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.AccountType", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.AgentAccess", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.AgentAccessMax", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.AgentAppearanceServiceURL", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.AgentRegionAccess", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.FirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.InitialOutfit", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.LastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.MapServerUrl", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.MfaHash", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.NextMethod", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.NextOptions", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.NextUrl", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.OpenIDUrl", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.ParseMessage.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.PremiumPackages", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.Reason", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.SeedCapability", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.SnapshotConfigUrl", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.StartLocation", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.UDPBlacklist", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslSyntax.Keywords", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ANY.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.BASE.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.BaseCall.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.COLON.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Call.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ClassBody.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Cons.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.EOF.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Error.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.GStuff.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ID.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Item.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.LBRACE.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.LBRACK.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.LPAREN.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.NEW.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Name.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Null.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ParserEntry.str", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ParserReduce.str", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.ParserShift.str", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.RBRACE.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.RBRACK.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.RPAREN.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SEMICOLON.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SYMBOL.Pos", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SYMBOL.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.SourceLineInfo.sourceLine", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.Stuff.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.THIS.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.TOKEN.yyname", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.TOKEN.yytext", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.YyLexer.InputEncoding", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.LslTools.YyParser.StartSymbol", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceErrorEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Marketplace.MarketplaceListing.EditUrl", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Messages.Linden.InterestListMessage.Mode", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.MoneyBalanceReplyEventArgs.Description", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.AgentAppearanceServiceURL", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.LoginErrorKey", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.LoginMessage", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ObjectMediaEventArgs.Version", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.LockedFolderPublic.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvInventoryItem.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvRestriction.SenderName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.RLV.RlvSharedFolder.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Joint", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Location", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarAttachmentPoint.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.FileName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.AvatarMeshDefinition.Type", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.Joint.aliases", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.group", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.JointBase.support", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Header", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.SkinJoints", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.num_bones", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenSkeleton.num_collision_volumes", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.BoneName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ButtonLabels", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.FirstName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.LastName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptDialogEventArgs.ObjectName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.ObjectName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptQuestionEventArgs.ObjectOwnerName", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.ScriptSensorReplyEventArgs.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.SetDisplayNameReplyEventArgs.Reason", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.CommandPath", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.QueryParameters", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.SlurlParser.Sim", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Item(System.String)", + "position": "parameter:key", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.StructuredData.OSDMap.Keys", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.TaskInventoryReplyEventArgs.AssetFilename", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.TeleportEventArgs.Message", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.TreeDefinition.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.UUIDNameReplyEventArgs.Names", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.CurrentCaptureDevice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.PlaybackDevice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceAccountEventArgs.AccountHandle", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.Handle", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectorEventArgs.Version", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.CurrentDevice", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceDevicesEventArgs.Devices", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceParticipant.Name", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.Vivox.VoiceSession.Handle", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.ChannelCredentials", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.ChannelId", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.SdpLocal", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceManager.SdpRemote", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.ChannelCredentials", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.ChannelId", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.SdpLocal", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "P:LibreMetaverse.Voice.WebRTC.VoiceSession.SdpRemote", + "position": "property_type", + "signature": "System.String" + }, + { + "owner_doc_id": "T:LibreMetaverse.StructuredData.OSDMap", + "position": "interface", + "signature": "System.String" + } + ] + }, + { + "doc_id": "T:System.Text.Encoding", + "signature": "System.Text.Encoding", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.LslTools.YyLexer.m_encoding", + "position": "field_type", + "signature": "System.Text.Encoding" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Charset.GetEncoding(System.String,System.Boolean@,LibreMetaverse.LslTools.ErrorHandler)", + "position": "return_type", + "signature": "System.Text.Encoding" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(LibreMetaverse.LslTools.CsReader,System.Text.Encoding)", + "position": "parameter:enc", + "signature": "System.Text.Encoding" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CsReader.#ctor(System.String,System.Text.Encoding)", + "position": "parameter:enc", + "signature": "System.Text.Encoding" + } + ] + }, + { + "doc_id": "T:System.Threading.CancellationToken", + "signature": "System.Threading.CancellationToken", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.CancellationToken", + "position": "field_type", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ChatterBoxAcceptInviteAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.FindExperienceByNameAsync(System.String,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ForgetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAdminExperiencesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAgentExperiencePermissionsAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAgentExperiencesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAgentPreferencesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAttachmentResourcesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAvatarRenderInfoAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetCreatorExperiencesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperienceInfoAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePreferencesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetGroupExperiencesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetProductInfoAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetRegionExperiencesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetViewerBenefitsAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GoHomeAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsExperienceAdminAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsExperienceContributorAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ModerateChatSessions(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PlayGestureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestNavMeshGenerationStatusAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestNavMeshRebakeAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RetrieveInstantMessagesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendViewerStatsAsync(LibreMetaverse.Messages.Linden.ViewerStatsMessage,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetAgentAccessAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetDisplayNameAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePermissionAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePreferencesAsync(LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHoverHeightAsync(System.Double,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.StartIMConferenceAsync(System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateAgentLanguageAsync(System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateExperienceAsync(LibreMetaverse.Messages.Linden.ExperienceInfo,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileAsync(LibreMetaverse.Avatar.AvatarProperties,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotesAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(LibreMetaverse.InventoryItem,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AttachAsync(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanAttachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanDetachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.DetachAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.FetchParentAsync(LibreMetaverse.InventoryBase,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetCurrentOutfitLinksAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetWornAtAsync(LibreMetaverse.WearableType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.IsObjectDescendentOfAsync(LibreMetaverse.InventoryBase,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.ReplaceOutfitAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CheckSystemFoldersAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CopyFolderAsync(LibreMetaverse.InventoryFolder,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CreateFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.SetInitialOutfitAsync(System.String,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByAttachmentPointAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentOutfitFolderAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RequestAgentWornAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.SendOutfitToCurrentSimulatorAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.GetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.PruneAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCacheAsync(LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestImageAsync(LibreMetaverse.UUID,LibreMetaverse.ImageType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestMeshAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestServerBakedImageAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadAsync(LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadBakedTextureAsync(System.Byte[],System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadLargeTextureAsync(System.Byte[],System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamplesPacedAsync(System.Int16[],System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRawPcmStreamAsync(System.IO.Stream,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.GetDisplayNamesAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAgentProfileAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.AcquireAsync(System.Uri,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.GetEventInfoAsync(System.UInt32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchClassifiedsAsync(System.String,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.DirectoryManager.ClassifiedQueryFlags,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchDirPlacesAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchEventsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,LibreMetaverse.DirectoryManager.EventCategories,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchGroupsAsync(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchLandAsync(LibreMetaverse.DirectoryManager.SearchTypeFlags,LibreMetaverse.DirectoryManager.DirFindFlags,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPeopleAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.SearchPlacesAsync(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.ParcelCategory,System.String,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetLegacyEnvironmentAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetLegacyEnvironmentAsync(LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetParcelEnvironmentAsync(System.Int32,LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetRegionEnvironmentAsync(LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.GetRegionRestartScheduleAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestCovenantNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestCovenantNotecardAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoAsync(System.String,System.Single,LibreMetaverse.RegionFlags,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendSimConsoleCommandAsync(System.String,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionRestartScheduleAsync(LibreMetaverse.RegionRestartSchedule,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.AcceptFriendshipViaCapAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.DeclineFriendshipViaCapAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridClientBakingTextureProvider.RequestTextureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.String,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.UInt64,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.MapItemsAsync(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapLayerAsync(LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestBanActionAsync(LibreMetaverse.UUID,LibreMetaverse.GroupBanAction,LibreMetaverse.UUID[],System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestBannedAgentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownload(LibreMetaverse.Http.DownloadRequest,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetRequestAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.IBakingTextureProvider.RequestTextureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PerformUploadAsync(System.Uri,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PrepareUploadAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.UploadAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.ResetAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.ResetOnSimAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.SetModeAsync(LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.SetModeOnSimAsync(LibreMetaverse.Simulator,LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RestoreFromDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.SaveToDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyLibraryCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CreateInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryChildrenAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.EmptyTrashAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCOFAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchOrphansAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PurgeDescendentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryChildrenAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryLinksAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveCategoryAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.SlamFolderAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateItemAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.WearableType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinkAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.InventoryType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.EmptyLostAndFoundAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.EmptyTrashAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FetchItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FetchItemHttpAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:token", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetInventoryRecursiveAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetTaskInventoryAsync(LibreMetaverse.UUID,System.UInt32,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolder(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolderAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolders(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFoldersAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItems(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemsAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveDescendantsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveFolderAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemsAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemFromNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken,System.Action{System.Collections.Generic.List{LibreMetaverse.InventoryItem}})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderUpdateAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UploadThumbnailAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.WaitForNextInventoryOfferAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.ShutdownAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.ActivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.CreateListingAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeactivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeleteListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.FetchListingsAsync(System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LogoutAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ApplyMaterialAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClearMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.NavigateObjectMediaAsync(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SendMaterialUpdatesAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.GLTFMaterialUpdate},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.UpdateObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.MediaEntry[],LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.GetParcelResourcesAsync(LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Boolean,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestRemoteParcelIDAsync(LibreMetaverse.Vector3,System.UInt64,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitGroundAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.UnsitAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.IsSittingAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitGroundAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.UnsitAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.IsSittingAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSharedFolderAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.RemoveRestrictionsForObjectsAsync(System.Collections.Generic.IEnumerable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessInstantMessageAsync(System.String,System.Guid,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferAcceptedAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferDeclinedAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemAttachedAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemUnwornAsync(System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemWornAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSendPublicMessageAsync(System.String,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportUnsitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.Interval(System.TimeSpan,System.Action,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:token", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:token", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainManager.GetTerrainMaterialOverridesAsync(System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainManager.SetTerrainMaterialOverridesAsync(LibreMetaverse.Assets.AssetMaterial[],System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.Threading.CancellationToken)", + "position": "parameter:token", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:token", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.ChatAsync(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32,System.Threading.CancellationToken)", + "position": "parameter:cancellationToken", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.CreatePeerConnectionAsync(System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.StartAsync(System.Threading.CancellationToken)", + "position": "parameter:ct", + "signature": "System.Threading.CancellationToken" + } + ] + }, + { + "doc_id": "T:System.Threading.CancellationTokenSource", + "signature": "System.Threading.CancellationTokenSource", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeCancelAndDispose(System.Threading.CancellationTokenSource,System.Action{System.String,System.Exception})", + "position": "parameter:cts", + "signature": "System.Threading.CancellationTokenSource" + } + ] + }, + { + "doc_id": "T:System.Threading.Tasks.Task", + "signature": "System.Threading.Tasks.Task", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ChatterBoxAcceptInviteAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PlayGestureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestNavMeshRebakeAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RetrieveInstantMessagesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendViewerStatsAsync(LibreMetaverse.Messages.Linden.ViewerStatsMessage,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetDisplayNameAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePreferencesAsync(LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHoverHeightAsync(System.Double,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.StartIMConferenceAsync(System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateAgentLanguageAsync(System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileAsync(LibreMetaverse.Avatar.AvatarProperties,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotesAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(LibreMetaverse.InventoryItem,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AddToOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.AttachAsync(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.DetachAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemoveFromOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.ICurrentOutfitPolicy.ReportItemChangeAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CheckSystemFoldersAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.SetInitialOutfitAsync(System.String,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ApplyArchetype(LibreMetaverse.GenepoolArchetype)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.BlendToArchetype(LibreMetaverse.GenepoolArchetype,System.Single)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RandomizeAppearance(System.Random)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.ReplaceOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RequestSetAppearance(System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.SendOutfitToCurrentSimulatorAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.WearOutfitAsync(System.Collections.Generic.List{LibreMetaverse.InventoryBase},System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.PruneAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,System.Collections.Generic.IList{LibreMetaverse.UUID},System.String)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SavePrimsAsync(LibreMetaverse.AssetManager,System.Collections.Generic.IList{LibreMetaverse.Assets.AssetPrim},System.String,System.String)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveSimAssetsAsync(LibreMetaverse.AssetManager,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamplesPacedAsync(System.Int16[],System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRawPcmStreamAsync(System.IO.Stream,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartPlaybackAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StopPlaybackAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:task", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:task", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoAsync(System.String,System.Single,LibreMetaverse.RegionFlags,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoAsync(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.AcceptFriendshipViaCapAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.DeclineFriendshipViaCapAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapLayerAsync(LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestBanActionAsync(LibreMetaverse.UUID,LibreMetaverse.GroupBanAction,LibreMetaverse.UUID[],System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestBannedAgentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetRequestAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.ResetAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.SetModeAsync(LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.SaveToDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.EmptyLostAndFoundAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.EmptyTrashAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetInventoryRecursiveAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolderAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFoldersAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItemsAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveDescendantsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveFolderAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveItemsAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventoryAsync(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken,System.Action{System.Collections.Generic.List{LibreMetaverse.InventoryItem}})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseClientScopeAsync(LibreMetaverse.GridClient,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:action", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseClientScopeAsync(LibreMetaverse.GridClient,System.Func{System.Threading.Tasks.Task})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseRegionScopeAsync(LibreMetaverse.Simulator,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:action", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseRegionScopeAsync(LibreMetaverse.Simulator,System.Func{System.Threading.Tasks.Task})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseScopeAsync(System.Object,System.Func{System.Threading.Tasks.Task})", + "position": "parameter:action", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.UseScopeAsync(System.Object,System.Func{System.Threading.Tasks.Task})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.FetchListingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LogoutAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ShutdownAsync(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.NavigateObjectMediaAsync(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.UpdateObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.MediaEntry[],LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Boolean,System.TimeSpan,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitAsync(System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.SitGroundAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvActionCallbacks.UnsitAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AdjustHeightAsync(System.Single,System.Single,System.Single,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.AttachAsync(System.Collections.Generic.IReadOnlyList{LibreMetaverse.RLV.AttachmentRequest},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.DetachAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.RemOutfitAsync(System.Collections.Generic.IReadOnlyList{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendInstantMessageAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SendReplyAsync(System.Int32,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetCamFOVAsync(System.Single,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetDebugAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetEnvAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.Guid,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetGroupAsync(System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SetRotAsync(System.Single,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitAsync(System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.SitGroundAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.TpToAsync(System.Single,System.Single,System.Single,System.String,System.Nullable{System.Single},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvActionCallbacksDefault.UnsitAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvRestrictionManager.RemoveRestrictionsForObjectsAsync(System.Collections.Generic.IEnumerable{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferAcceptedAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportInventoryOfferDeclinedAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemAttachedAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemDetachedAsync(System.Guid,System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvAttachmentPoint,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemUnwornAsync(System.Guid,System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportItemWornAsync(System.Guid,System.Boolean,LibreMetaverse.RLV.RlvWearableType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSendPublicMessageAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportSitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ReportUnsitAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.Interval(System.TimeSpan,System.Action,System.Threading.CancellationToken,System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:asyncAction", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.ChatAsync(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.EndP2PCallAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.LeaveConferenceVoiceAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.LeaveGroupVoiceAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.CloseSessionAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.StartAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task" + } + ] + }, + { + "doc_id": "T:System.Threading.Tasks.TaskCompletionSource\u00601", + "signature": "System.Threading.Tasks.TaskCompletionSource\u003CTResult\u003E", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.CompletionTcs", + "position": "field_type", + "signature": "System.Threading.Tasks.TaskCompletionSource\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Threading.Tasks.Task\u00601", + "signature": "System.Threading.Tasks.Task\u003CTResult\u003E", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.FindExperienceByNameAsync(System.String,System.Int32,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceInfoMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ForgetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAdminExperiencesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAgentExperiencePermissionsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperiencePreferencesMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAgentExperiencesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAgentPreferencesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.AgentPreferencesMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAttachmentResourcesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.AttachmentResourcesMessage\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAvatarRenderInfoAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.AvatarRenderInfoMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetCreatorExperiencesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperienceInfoAsync(System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceInfoMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePermissionAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetExperiencePreferencesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperiencePreferencesMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetGroupExperiencesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceListMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetProductInfoAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ProductInfoRequestMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetRegionExperiencesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.RegionExperiencesMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetViewerBenefitsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ViewerBenefitsMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GoHomeAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsExperienceAdminAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsExperienceContributorAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.QueryExperiencesOnParcelAsync(System.Int32,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.Dictionary\u003CLibreMetaverse.UUID, System.Boolean\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestNavMeshGenerationStatusAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendPostcardAsync(System.Byte[],System.String,System.String,System.String,System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetAgentAccessAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.AgentAccessEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetExperiencePermissionAsync(LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.String,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateExperienceAsync(LibreMetaverse.Messages.Linden.ExperienceInfo,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExperienceInfo\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanAttachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.CanDetachItemAsync(LibreMetaverse.InventoryItem,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.FetchParentAsync(LibreMetaverse.InventoryBase,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetCurrentOutfitLinksAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.GetWornAtAsync(LibreMetaverse.WearableType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.IsObjectDescendentOfAsync(LibreMetaverse.InventoryBase,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.ReplaceOutfitAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CopyFolderAsync(LibreMetaverse.InventoryFolder,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.Appearance.InitialOutfit.InitialOutfitProgress})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfit.CreateFolderAsync(LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetAttachmentsByAttachmentPointAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.MultiValueDictionary\u003CLibreMetaverse.AttachmentPoint, LibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetCurrentOutfitFolderAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryWearable\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RequestAgentWornAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.GetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.SaveAssetToCacheAsync(LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.SourceType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestImageAsync(LibreMetaverse.UUID,LibreMetaverse.ImageType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestInventoryAssetAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestMeshAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetMesh\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestServerBakedImageAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadAsync(LibreMetaverse.AssetType,System.Byte[],System.Boolean,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadBakedTextureAsync(System.Byte[],System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestUploadLargeTextureAsync(System.Byte[],System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.GetDisplayNamesAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.AgentDisplayName[], LibreMetaverse.UUID[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAgentProfileAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.AgentProfileMessage\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.GetEventInfoAsync(System.UInt32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.DirectoryManager.EventInfo\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.UsingAsync\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,System.Threading.Tasks.Task{\u0060\u00601}})", + "position": "parameter:action", + "signature": "System.Threading.Tasks.Task\u003CTResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.UsingAsync\u0060\u00602(System.Func{\u0060\u00600},System.Func{\u0060\u00600,System.Threading.Tasks.Task{\u0060\u00601}})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CTResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetLegacyEnvironmentAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.LegacyEnvironmentMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.GetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetParcelEnvironmentAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.ResetRegionEnvironmentAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetLegacyEnvironmentAsync(LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetParcelEnvironmentAsync(System.Int32,LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.SetRegionEnvironmentAsync(LibreMetaverse.Messages.Linden.EnvironmentData,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Messages.Linden.ExtEnvironmentMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.GetRegionRestartScheduleAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.RegionRestartSchedule\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestCovenantNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestCovenantNotecardAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.Asset\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendSimConsoleCommandAsync(System.String,System.TimeSpan,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionRestartScheduleAsync(LibreMetaverse.RegionRestartSchedule,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForEventAsync\u0060\u00602(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Func{\u0060\u00600,\u0060\u00601},System.Int32,System.Threading.CancellationToken,\u0060\u00601)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CTResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridClientBakingTextureProvider.RequestTextureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.String,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.GridRegion\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.UInt64,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.GridRegion\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.MapItemsAsync(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.MapItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(LibreMetaverse.Http.DownloadRequest)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.IBakingTextureProvider.RequestTextureAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetTexture\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PerformUploadAsync(System.Uri,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PrepareUploadAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.UploadAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.StructuredData.OSD\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.ResetOnSimAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.SetModeOnSimAsync(LibreMetaverse.Simulator,LibreMetaverse.Messages.Linden.InterestListMode,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RestoreFromDiskAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Int32\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CopyLibraryCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CreateInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryChildrenAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.DeleteCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.EmptyTrashAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCOFAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchOrphansAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryChildrenAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveCategoryLinksAsync(System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.MoveItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PurgeDescendentsAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryChildrenAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.PutCategoryLinksAsync(System.String,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveCategoryAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.RemoveItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.SlamFolderAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateCategoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.UpdateItemAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemAsync(LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,LibreMetaverse.InventoryType,LibreMetaverse.WearableType,LibreMetaverse.PermissionMask,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CreateItemFromAssetResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateItemFromAssetVariablePriceAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Func{System.Int32,System.Boolean},System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CreateItemFromAssetResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinkAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.InventoryType,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FetchItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FetchItemHttpAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FindObjectByPathAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.FolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken,System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetTaskInventoryAsync(LibreMetaverse.UUID,System.UInt32,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemFromNotecardAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryBase\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CopyItemsResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCopyItemsWithResultAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{LibreMetaverse.UUID},System.Collections.Generic.List{System.String},LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.CopyItemsResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderUpdateAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryManager.FolderUpdateResult\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, System.Boolean, System.Collections.Generic.List\u003CSystem.String\u003E, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, System.Boolean, System.Collections.Generic.List\u003CSystem.String\u003E, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UploadThumbnailAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Nullable\u003CLibreMetaverse.UUID\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.WaitForNextInventoryOfferAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.InventoryObjectOfferedEventArgs\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.ShutdownAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.ActivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.CreateListingAsync(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Marketplace.MarketplaceListing\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeactivateListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Marketplace.MarketplaceManager.DeleteListingAsync(System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Simulator\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Simulator\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginCredential,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(LibreMetaverse.LoginParams,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginWithResponseAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.LoginResponseData\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ApplyMaterialAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClearMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.IEnumerable\u003CLibreMetaverse.Materials.LegacyMaterial\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestMaterialsAsync(LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.IEnumerable\u003CLibreMetaverse.Materials.LegacyMaterial\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.MediaEntry[]\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SendMaterialUpdatesAsync(LibreMetaverse.Simulator,System.Collections.Generic.IEnumerable{LibreMetaverse.GLTFMaterialUpdate},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetMaterialOverrideAsync(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Assets.AssetMaterial,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.GetParcelResourcesAsync(LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.LandResourcesInfo\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestRemoteParcelIDAsync(LibreMetaverse.Vector3,System.UInt64,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.IsSittingAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.CameraSettings\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.InventoryMap\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Guid\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.IsSittingAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.ObjectExistsAsync(System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.CameraSettings\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.String\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.InventoryMap\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSharedFolderAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.RlvSharedFolder\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.ValueTuple\u003CSystem.Boolean, System.Guid\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessInstantMessageAsync(System.String,System.Guid,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvService.ProcessMessageAsync(System.String,System.Guid,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.ConnectAsync(System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.UseCircuitCodeAsync(System.Boolean)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainManager.GetTerrainMaterialOverridesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CLibreMetaverse.Assets.AssetMaterial[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainManager.SetTerrainMaterialOverridesAsync(LibreMetaverse.Assets.AssetMaterial[],System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.PersistentLogin(LibreMetaverse.GridClient,System.String,System.String,System.String,System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptIncomingP2PCallAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.AcceptP2PCallAsync(LibreMetaverse.UUID,System.String,System.String)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.ConnectPrimaryRegionAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.JoinConferenceVoiceAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.JoinGroupVoiceAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.RequestParcelVoiceInfoAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StartP2PCallAsync(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.CreatePeerConnectionAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSIPSorcery.Net.RTCPeerConnection\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.RequestProvisionAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Boolean\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryManager.NoResults", + "position": "property_type", + "signature": "System.Threading.Tasks.Task\u003CSystem.Collections.Generic.List\u003CLibreMetaverse.InventoryBase\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.Threading.Tasks.ValueTask", + "signature": "System.Threading.Tasks.ValueTask", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.GridClient.DisposeAsync", + "position": "return_type", + "signature": "System.Threading.Tasks.ValueTask" + } + ] + }, + { + "doc_id": "T:System.Threading.Tasks.ValueTask\u00601", + "signature": "System.Threading.Tasks.ValueTask\u003CTResult\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.AcquireAsync(System.Uri,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.Tasks.ValueTask\u003CSystem.Threading.RateLimiting.RateLimitLease\u003E" + } + ] + }, + { + "doc_id": "T:System.Threading.Thread", + "signature": "System.Threading.Thread", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:thread", + "signature": "System.Threading.Thread" + } + ] + }, + { + "doc_id": "T:System.Threading.WaitHandle", + "signature": "System.Threading.WaitHandle", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle)", + "position": "parameter:handle", + "signature": "System.Threading.WaitHandle" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.Threading.CancellationToken)", + "position": "parameter:handle", + "signature": "System.Threading.WaitHandle" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan)", + "position": "parameter:handle", + "signature": "System.Threading.WaitHandle" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:handle", + "signature": "System.Threading.WaitHandle" + } + ] + }, + { + "doc_id": "T:System.TimeProvider", + "signature": "System.TimeProvider", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.GridClient.TimeProvider", + "position": "property_type", + "signature": "System.TimeProvider" + }, + { + "owner_doc_id": "P:LibreMetaverse.IGridClient.TimeProvider", + "position": "property_type", + "signature": "System.TimeProvider" + } + ] + }, + { + "doc_id": "T:System.TimeSpan", + "signature": "System.TimeSpan", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeJoinThread(System.Threading.Thread,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTask(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeWaitTaskAsync(System.Threading.Tasks.Task,System.TimeSpan,System.Action{System.String,System.Exception})", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendSimConsoleCommandAsync(System.String,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:responseTimeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Add(\u00600,\u00601,System.TimeSpan)", + "position": "parameter:slidingExpiration", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.AddOrUpdate(\u00600,\u00601,System.TimeSpan)", + "position": "parameter:slidingExpiration", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Update(\u00600,\u00601,System.TimeSpan)", + "position": "parameter:slidingExpiration", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.ShutdownAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestAllSimParcelsAsync(LibreMetaverse.Simulator,System.Boolean,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:delay", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.Interval(System.TimeSpan,System.Action,System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:pollInterval", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Repeat.IntervalAsync(System.TimeSpan,System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken,System.Boolean)", + "position": "parameter:pollInterval", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne(System.TimeSpan)", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne(System.TimeSpan)", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne(System.TimeSpan)", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan)", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.WaitHandleAsyncFactory.FromWaitHandle(System.Threading.WaitHandle,System.TimeSpan,System.Threading.CancellationToken)", + "position": "parameter:timeout", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ReapStalePeers(System.TimeSpan)", + "position": "parameter:maxAge", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "P:LibreMetaverse.CapsRateLimiterOptions.ReplenishmentPeriod", + "position": "property_type", + "signature": "System.TimeSpan" + }, + { + "owner_doc_id": "P:LibreMetaverse.RegionRestartSchedule.Time", + "position": "property_type", + "signature": "System.TimeSpan" + } + ] + }, + { + "doc_id": "T:System.Type", + "signature": "System.Type", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.ToObject(System.Type,LibreMetaverse.StructuredData.OSD)", + "position": "parameter:type", + "signature": "System.Type" + } + ] + }, + { + "doc_id": "T:System.UInt16", + "signature": "System.UInt16", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.unknown0", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.unknown1", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImageDownload.PacketCount", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImageDownload.PacketsSeen", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapPacket.ID", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.Height", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.Width", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.SimPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.Port", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.Method", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.ID", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Packets", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.Packet", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.TimeDilation", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.TargetPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.X", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.Y", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.SizeX", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.SizeY", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MaxX", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MaxY", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MinX", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.MinY", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.Port", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.PublicPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.Port", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathBegin", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.PathEnd", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileBegin", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileEnd", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ProfileHollow", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamType", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathBegin", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.PathEnd", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileBegin", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileEnd", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ProfileHollow", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.TimeDilation", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.TimeDilation", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathBegin", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.PathEnd", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileBegin", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileEnd", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ProfileHollow", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.TimeDilation", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.Port", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.RegionPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.TargetPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.RPCServerPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.TargetPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.Port", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.Port", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SimPort", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.Face.Indices", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.NumFaces", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.SimpleMesh.Indices", + "position": "field_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHeightWidth(System.UInt16,System.UInt16)", + "position": "parameter:height", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHeightWidth(System.UInt16,System.UInt16)", + "position": "parameter:width", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetJoints(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Avatar,System.UInt16,System.Boolean)", + "position": "parameter:timeDilation", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackUShort", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "position": "parameter:maxX", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "position": "parameter:maxY", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "position": "parameter:minX", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "position": "parameter:minY", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:port", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:port", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:port", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.GetType(System.UInt16,LibreMetaverse.PacketFrequency)", + "position": "parameter:id", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,System.UInt16,System.Boolean,System.Boolean)", + "position": "parameter:timeDilation", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackBeginCut(System.Single)", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackEndCut(System.Single)", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.PackProfileHollow(System.Single)", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackBeginCut(System.UInt16)", + "position": "parameter:beginCut", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackEndCut(System.UInt16)", + "position": "parameter:endCut", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.UnpackProfileHollow(System.UInt16)", + "position": "parameter:profileHollow", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.Command(System.UInt16,LibreMetaverse.PacketFrequency)", + "position": "parameter:command", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.UInt16)", + "position": "parameter:value", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.UInt16)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerseObjectUpdateEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Primitive,LibreMetaverse.ObjectMovementUpdate,System.UInt16)", + "position": "parameter:timeDilation", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[])", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt16(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToUInt16(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16)", + "position": "parameter:value", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytesBig(System.UInt16,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToFloat(System.UInt16,System.Single,System.Single)", + "position": "parameter:val", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorCreate(System.String,System.String,System.UInt16,System.UInt16,LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings)", + "position": "parameter:maximumPort", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectorCreate(System.String,System.String,System.UInt16,System.UInt16,LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceLoggingSettings)", + "position": "parameter:minimumPort", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarUpdateEventArgs.TimeDilation", + "position": "property_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.SimPort", + "position": "property_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.PrimEventArgs.TimeDilation", + "position": "property_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumFaces", + "position": "property_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumSkinJoints", + "position": "property_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.Rendering.LindenMesh.NumVertices", + "position": "property_type", + "signature": "System.UInt16" + }, + { + "owner_doc_id": "P:LibreMetaverse.TerseObjectUpdateEventArgs.TimeDilation", + "position": "property_type", + "signature": "System.UInt16" + } + ] + }, + { + "doc_id": "T:System.UInt32", + "signature": "System.UInt32", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "E:LibreMetaverse.AudioDevice.OnAudioSourceEncodedSample", + "position": "event_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.AssetUpload.PacketNum", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.AssetGesture.TriggerKeyMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsBase", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsEveryone", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsGroup", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsNextOwner", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.PermsOwner", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.ParentID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsBase", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsEveryone", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsGroup", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsNextOwner", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.PermsOwner", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Interests.SkillsMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Avatar.Interests.WantToMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.HandPose", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.BinBVHAnimationReader.JointCount", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.CRC32.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.CreationDate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.ExpirationDate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ClassifiedAd.ParentEstate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Amount", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Cover", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.DateUTC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.Duration", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventInfo.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.DirectoryManager.EventsSearchData.Time", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.EstateTask.TaskLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupNoticesListEntry.Timestamp", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.GroupRole.Members", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ImportExport.ModelFace.Indices", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.InstantMessage.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapItem.GlobalX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.MapItem.GlobalY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.ItemDataInfo.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.RegionSizeX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.RegionSizeY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.RegionSizeX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.RegionSizeY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportDataBlock.TaskLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.ReportType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.RequestFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandStatReplyMessage.TotalObjectCount", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Version", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.AuctionID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.PassPrice", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.SalePrice", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.RegionSizeX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.RegionSizeY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.NetworkManager.OutgoingPacket.SequenceNumber", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.ObjectMovementUpdate.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.GestureFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.Code", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.CircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.GenCounter", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.CircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.GenCounter", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.Timestamp", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.SerialNum", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ViewerCircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.SerialNum", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.SerialNum", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.CircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.GenCounter", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ControlFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.SerialNum", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.SkillsMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.WantToMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.SkillsMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.WantToMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ViewerCircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ViewerCircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ControlFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.LocomotionState", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ViewerCircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.CreationDate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ExpirationDate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ParentEstate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ParentEstate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.CircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.AuctionID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.Packet", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.SimIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.AgentEffectiveMaturity", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.KickedFromEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ViewerIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.GestureFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.CreationDate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ExpirationDate", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.Status", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.EventFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.UnixTime", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.Status", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.SearchType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.SearchType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.Status", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EjectUserPacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.More", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.Time", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.IP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.CovenantTimestamp", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Amount", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Cover", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.DateUTC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.Duration", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.EventFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.EventID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.SpaceIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.KickFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.TotalNumItems", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.Timestamp", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.Change", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Members", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.TotalPairs", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.TotalNumItems", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.AckList", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.Header.Sequence", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.Size", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.Timestamp", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.TargetIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.TaskLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ReportType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.RequestFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.TotalObjectCount", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ReportType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.RequestFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.RegionX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.RegionY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.SimulatorIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.TransactionTime", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.Time", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.X", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.Y", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ItemType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ItemType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Bottom", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Left", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Right", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.Top", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.Time", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.TransactionTime", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.MuteCRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.IP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.PublicIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.AddFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.DuplicateFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.DuplicateFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ParamSize", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.TimeSinceLast", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.Mask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.RequestFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.Category", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.UpdateFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.UpdateFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ParentID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.UpdateFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.IP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ReturnType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Command", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.AuctionID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ParcelFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ParcelFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ReturnType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ReturnType", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.QueryFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.CombatFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.HardMaxAgents", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.HardMaxObjects", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.MaxAgents32", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ChatFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ExternalRegionIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.InternalRegionIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.Packet", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.RequestFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.TransactionTime", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ObjectPermissions", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ItemFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ItemFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ItemFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ObjectLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ItemFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.TargetIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.IntValue", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.IntValue", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.RPCServerIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.IntValue", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.Controls", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.Packet", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.LocationID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.LocationID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.RegionX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.RegionY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ObjectCapacity", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.RegionX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.RegionY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.StatBlock.StatID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.CircuitCode", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.IP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.GridX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.GridY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.SimulatorIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ParentEstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.RegionFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SecPerDay", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.SecPerYear", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.OldestUnacked", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.LocationID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.SimIP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.TeleportFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.LocationID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.TeleportFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.TeleportFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.TeleportFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.TeleportFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Test0", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Test1", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.Test2", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.Test1", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.CallbackID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.MuteFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.EstateID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.BaseMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.EveryoneMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.Flags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.GroupMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.NextOwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.OwnerMask", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.Code", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.IP", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.StartTime", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.SysRAM", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.Objects", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.Textures", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.World", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Dropped", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FailedResends", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Invalid", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.OffCircuit", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.Resent", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.SendPacket", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.Type", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Bytes", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Compressed", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Packets", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.Savings", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Parcel.AuctionID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ExtendedMeshFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParentID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.CRC", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.ParticleSystem.PartFlags", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.PhysicsProperties.LocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.Face", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.SizeX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.TextureAnimation.SizeY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.LindenMesh.MorphVertex.VertexIndex", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.DefaultRegionSizeX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.DefaultRegionSizeY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.GlobalToLocalID", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ObjectsAvatars", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.ObjectsPrimitives", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.SizeX", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.SizeY", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.PrimCache", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.TerrainPatch.Header.WordBits", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "F:LibreMetaverse.XferDownload.PacketNum", + "position": "field_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "parameter:regionSizeX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "parameter:regionSizeY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Touch(System.UInt32)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.Permissions,System.UInt32,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "parameter:itemFlags", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetIndices(LibreMetaverse.Assets.Gltf.GltfPrimitive)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceEncodedSample(System.UInt32,System.Byte[])", + "position": "parameter:durationRtpUnits", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceRawSample(SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum,System.UInt32,System.Int16[])", + "position": "parameter:durationMilliseconds", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.ClearSsrc(System.UInt32)", + "position": "parameter:ssrc", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedEncodedSample(System.UInt32,System.Byte[])", + "position": "parameter:durationRtpUnits", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.GetPlaybackDevices", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.GetRecordingDevices", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRtpPacket(System.UInt32,System.Byte[])", + "position": "parameter:ssrc", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcGainPercent(System.UInt32,System.Int32)", + "position": "parameter:ssrc", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcMute(System.UInt32,System.Boolean)", + "position": "parameter:ssrc", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarSitChangedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Avatar,System.UInt32,System.UInt32)", + "position": "parameter:oldSeat", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarSitChangedEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.Avatar,System.UInt32,System.UInt32)", + "position": "parameter:sittingOn", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBits(System.UInt32,System.Int32)", + "position": "parameter:data", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackUBits(System.Int32)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.UnpackUInt", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.EventInfoRequest(System.UInt32)", + "position": "parameter:eventID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.GetEventInfoAsync(System.UInt32,System.Threading.CancellationToken)", + "position": "parameter:eventID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,LibreMetaverse.DirectoryManager.DirFindFlags,System.String,System.UInt32,LibreMetaverse.DirectoryManager.EventCategories)", + "position": "parameter:queryStart", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartEventsSearch(System.String,System.UInt32)", + "position": "parameter:queryStart", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateBansReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:estateID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateGroupsReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:estateID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateManagersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:estateID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.LandStatRequest(System.Int32,LibreMetaverse.EstateTools.LandStatReportType,System.UInt32,System.String)", + "position": "parameter:requestFlags", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateUpdateInfoReplyEventArgs.#ctor(System.String,LibreMetaverse.UUID,System.UInt32,LibreMetaverse.RegionFlags,System.Int32)", + "position": "parameter:estateID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateUsersReplyEventArgs.#ctor(System.UInt32,System.Int32,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "parameter:estateID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ForceSelectObjectsReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},System.Boolean)", + "position": "parameter:objectIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:everyoneMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:flags", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:groupMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:nextOwnerMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:ownerMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.InventoryCRC(System.Int32,System.Byte,System.SByte,System.SByte,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.IncomingPacketIDCollection.TryEnqueue(System.UInt32)", + "position": "parameter:ack", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CopyScriptToTask(System.UInt32,LibreMetaverse.InventoryItem,System.Boolean,LibreMetaverse.Simulator)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GetTaskInventoryAsync(LibreMetaverse.UUID,System.UInt32,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.ItemCRC(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveTaskInventory(System.UInt32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveTaskInventory(System.UInt32,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestDeRezToInventory(System.UInt32)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestDeRezToInventory(System.UInt32,LibreMetaverse.DeRezDestination,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestTaskInventory(System.UInt32)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestTaskInventory(System.UInt32,LibreMetaverse.Simulator)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UpdateTaskInventory(System.UInt32,LibreMetaverse.InventoryItem,LibreMetaverse.Simulator,System.Boolean)", + "position": "parameter:objectLocalID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.KillObjectEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32)", + "position": "parameter:objectID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.KillObjectsEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32[])", + "position": "parameter:objectIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseUInt(System.String,System.Collections.Hashtable)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:sizeX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:sizeY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:sizeX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:sizeY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:sizeX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:sizeY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AttachObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.AttachmentPoint,LibreMetaverse.Quaternion)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.BuyObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.ClickObjectAsync(LibreMetaverse.Simulator,System.UInt32,System.Threading.CancellationToken)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeedObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.UUID)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeedObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DelinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeselectObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeselectObjects(LibreMetaverse.Simulator,System.UInt32[])", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DetachObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DropObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.GetPrimitive(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.UUID,System.Boolean)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "parameter:regionSizeX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.IsNearBorder(LibreMetaverse.Vector3,System.UInt32,System.UInt32,System.Single)", + "position": "parameter:regionSizeY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.LinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32,System.Boolean)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[])", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[],System.Boolean)", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetDescription(LibreMetaverse.Simulator,System.UInt32,System.String)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetDescriptions(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetExtraParamOff(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.ExtraParamType)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlexible(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.FlexibleData)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetLight(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.LightData)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetMaterial(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Material)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetName(LibreMetaverse.Simulator,System.UInt32,System.String)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetNames(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetObjectsGroup(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "position": "parameter:localIds", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPermissions(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.PermissionWho,LibreMetaverse.PermissionMask,System.Boolean)", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion,System.Boolean)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.SaleType,System.Int32)", + "position": "parameter:localIDs", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetScale(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean,System.Boolean)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSculpt(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.SculptData)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetShape(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.ConstructionData)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry,System.String)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.UpdateObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.UpdateType)", + "position": "parameter:localID", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelAccessListReplyEventArgs.#ctor(LibreMetaverse.Simulator,System.Int32,System.Int32,System.UInt32,System.Collections.Generic.List{LibreMetaverse.ParcelManager.ParcelAccessEntry})", + "position": "parameter:flags", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelMediaCommandEventArgs.#ctor(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.ParcelFlags,LibreMetaverse.ParcelMediaCommand,System.Single)", + "position": "parameter:sequence", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:baseMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:everyoneMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:groupMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:nextOwnerMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Permissions.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)", + "position": "parameter:ownerMask", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.RegionHandleFromGlobal(System.UInt32,System.UInt32)", + "position": "parameter:globalX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.RegionHandleFromGlobal(System.UInt32,System.UInt32)", + "position": "parameter:globalY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.CreateFace(System.UInt32)", + "position": "parameter:index", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.TextureEntry.GetFace(System.UInt32)", + "position": "parameter:index", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.EndianAwareBinaryReader.ReadUInt32", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.#ctor(LibreMetaverse.GridClient,System.Net.IPEndPoint,System.UInt64,System.UInt32,System.UInt32)", + "position": "parameter:sizeX", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.#ctor(LibreMetaverse.GridClient,System.Net.IPEndPoint,System.UInt64,System.UInt32,System.UInt32)", + "position": "parameter:sizeY", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromInteger(System.UInt32)", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromUInteger(System.UInt32)", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.UInt32", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.UInt32)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.UInt32)", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsUInteger", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.CRC", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[])", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DateTimeToUnixTime(System.DateTime)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.GetUnixTime", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IPToUInt(System.Net.IPAddress)", + "position": "return_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.LongToUInts(System.UInt64,System.UInt32@,System.UInt32@)", + "position": "parameter:b", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.LongToUInts(System.UInt64,System.UInt32@,System.UInt32@)", + "position": "parameter:c", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.TryParseHex(System.String,System.UInt32@)", + "position": "parameter:result", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32)", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytesBig(System.UInt32,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToHexString(System.UInt32)", + "position": "parameter:i", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntsToLong(System.UInt32,System.UInt32)", + "position": "parameter:a", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntsToLong(System.UInt32,System.UInt32)", + "position": "parameter:b", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UnixTimeToDateTime(System.UInt32)", + "position": "parameter:timestamp", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.TryGetPeerForSsrc(System.UInt32,LibreMetaverse.UUID@)", + "position": "parameter:ssrc", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.TryGetSsrc(LibreMetaverse.UUID,System.UInt32@)", + "position": "parameter:ssrc", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.AgentMovement.AgentControls", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.LocalID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.SittingOn", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.PlaybackDevice", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.RecordingDevice", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarSitChangedEventArgs.OldSeat", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.AvatarSitChangedEventArgs.SittingOn", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateBansReplyEventArgs.EstateID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateGroupsReplyEventArgs.EstateID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateManagersReplyEventArgs.EstateID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateUpdateInfoReplyEventArgs.EstateID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.EstateUsersReplyEventArgs.EstateID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ForceSelectObjectsReplyEventArgs.ObjectIDs", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_common.mip_levels", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.mip", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.fx_surface_init_from_common.slice", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.InventoryItem.Flags", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.KillObjectEventArgs.ObjectLocalID", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.KillObjectsEventArgs.ObjectLocalIDs", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.COFVersion", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.RegionSizeX", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.RegionSizeY", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.RegionX", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.LoginResponseData.RegionY", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.MapItem.LocalX", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.MapItem.LocalY", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.CircuitCode", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelAccessListReplyEventArgs.Flags", + "position": "property_type", + "signature": "System.UInt32" + }, + { + "owner_doc_id": "P:LibreMetaverse.ParcelMediaCommandEventArgs.Sequence", + "position": "property_type", + "signature": "System.UInt32" + } + ] + }, + { + "doc_id": "T:System.UInt64", + "signature": "System.UInt64", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.AssetUpload.XferID", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Assets.PrimObject.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.GridRegion.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.HomeInfo.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.SimulatorInfoBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ID", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.GroupPowers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.GroupPowers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.GroupPowers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.GroupPowers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ID", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.Handle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.RegionFlagsExtended", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.AgentPowers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.AgentPowers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.PowersMask", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.Powers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.Powers", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.CreationDate", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.RegionFlagsExtended", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.RegionProtocols", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.RegionFlagsExtended", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ID", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.Hash", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.Hash", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ID", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.RegionFlagsExtended", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.Flags", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.UsecSinceStart", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.Handle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Primitive.RegionHandle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.Simulator.Handle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.Handle", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.SimulatorDataPool.SimulatorDataPools", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "F:LibreMetaverse.XferDownload.XferID", + "position": "field_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.UInt64,System.UInt64,System.Single)", + "position": "parameter:globalX", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.UInt64,System.UInt64,System.Single)", + "position": "parameter:globalY", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportAsync(System.UInt64,LibreMetaverse.Vector3,System.Threading.CancellationToken)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestAssetXfer(System.String,System.Boolean,System.Boolean,LibreMetaverse.UUID,LibreMetaverse.AssetType,System.Boolean)", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendFoundReplyEventArgs.#ctor(LibreMetaverse.UUID,System.UInt64,LibreMetaverse.Vector3)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.GetGridRegionAsync(System.UInt64,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.MapItemsAsync(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType,System.Threading.CancellationToken)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapItems(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.GlobalPosToRegionHandle(System.Single,System.Single,System.Single@,System.Single@)", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.FindSimulator(System.UInt64)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestRemoteParcelIDAsync(LibreMetaverse.Vector3,System.UInt64,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.RegionHandleFromGlobal(System.UInt32,System.UInt32)", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.RegionHandleFromGlobalPosition(LibreMetaverse.Vector3d)", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.ToGlobalPosition(System.UInt64,LibreMetaverse.Vector3)", + "position": "parameter:simHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.PositionHelper.ToLocalPosition(System.UInt64,LibreMetaverse.Vector3d)", + "position": "parameter:simHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.RegionHandleReplyEventArgs.#ctor(LibreMetaverse.UUID,System.UInt64)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.#ctor(LibreMetaverse.GridClient,System.Net.IPEndPoint,System.UInt64,System.UInt32,System.UInt32)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorDataPool.GetSimulatorData(System.UInt64)", + "position": "parameter:hndl", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,System.UInt64,LibreMetaverse.Vector3,System.Single)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundTriggerEventArgs.#ctor(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Single,System.UInt64,LibreMetaverse.Vector3)", + "position": "parameter:regionHandle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromULong(System.UInt64)", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.UInt64", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.UInt64)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.#ctor(System.UInt64)", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDBinary.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDDate.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDInteger.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDReal.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.#ctor(System.UInt64)", + "position": "parameter:val", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.GetULong", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.StayInSim(System.UInt64,LibreMetaverse.Vector3)", + "position": "parameter:handle", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.BytesToUInt64(System.Byte[])", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.LongToUInts(System.UInt64,System.UInt32@,System.UInt32@)", + "position": "parameter:a", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64)", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64)", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64,System.Byte[],System.Int32)", + "position": "parameter:value", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntsToLong(System.UInt32,System.UInt32)", + "position": "return_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.AgentManager.HomeRegionHandle", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.FriendFoundReplyEventArgs.RegionHandle", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.RegionsByHandleReadOnly", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.RegionsByUUIDReadOnly", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.GridManager.TimeOfDay", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.IDREF_array.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.offset", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.InputLocalOffset.set", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.Name_array.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.offset", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.accessor.stride", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.bool_array.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.float_array.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.depth", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.height", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.image.width", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.instance_materialBind_vertex_input.input_set", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.int_array.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.lines.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.linestrips.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polygons.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.polylist.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.skinVertex_weights.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.triangles.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.trifans.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.tristrips.count", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.MapItem.RegionHandle", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.RegionHandleReplyEventArgs.RegionHandle", + "position": "property_type", + "signature": "System.UInt64" + }, + { + "owner_doc_id": "P:LibreMetaverse.SoundTriggerEventArgs.RegionHandle", + "position": "property_type", + "signature": "System.UInt64" + } + ] + }, + { + "doc_id": "T:System.ValueTuple\u00602", + "signature": "System.ValueTuple\u003CT1, T2\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.CompletionTcs", + "position": "field_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "F:LibreMetaverse.Rendering.AttachmentRiggedSkin.JointPositionOverrides", + "position": "field_type", + "signature": "System.ValueTuple\u003CSystem.String, System.Numerics.Vector3\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GetAttachmentResourcesAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.AttachmentResourcesMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PostAvatarRenderInfoAsync(System.Collections.Generic.IReadOnlyDictionary{LibreMetaverse.UUID,System.ValueTuple{System.Int32,System.Boolean}},System.Threading.CancellationToken)", + "position": "parameter:agents", + "signature": "System.ValueTuple\u003CSystem.Int32, System.Boolean\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.TryGetCachedAssetBytesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAgentProfileAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.AgentProfileMessage\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(LibreMetaverse.Http.DownloadRequest)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Net.Http.HttpResponseMessage, System.Byte[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.CreateInventoryAsync(LibreMetaverse.UUID,LibreMetaverse.StructuredData.OSD,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.InventoryItem\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.CreateLinksAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{System.ValueTuple{LibreMetaverse.InventoryBase,System.String}},System.Action{System.Boolean},System.Threading.CancellationToken)", + "position": "parameter:linksToCreate", + "signature": "System.ValueTuple\u003CLibreMetaverse.InventoryBase, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.GetParcelResourcesAsync(LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.Messages.Linden.LandResourcesInfo\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.CameraSettings\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.InventoryMap\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.IRlvQueryCallbacks.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetActiveGroupNameAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetCameraSettingsAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.CameraSettings\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetDebugSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetEnvironmentSettingValueAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetInventoryMapAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.InventoryMap\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSharedFolderAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.RLV.RlvSharedFolder\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvCallbacksDefault.TryGetSitIdAsync(System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Guid\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.ExtractJointPositionOverrides(LibreMetaverse.Rendering.MeshSkinData)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.String, System.Numerics.Vector3\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.PlaybackDevice", + "position": "property_type", + "signature": "System.ValueTuple\u003CSystem.UInt32, System.String\u003E" + }, + { + "owner_doc_id": "P:LibreMetaverse.AudioDevice.RecordingDevice", + "position": "property_type", + "signature": "System.ValueTuple\u003CSystem.UInt32, System.String\u003E" + } + ] + }, + { + "doc_id": "T:System.ValueTuple\u00603", + "signature": "System.ValueTuple\u003CT1, T2, T3\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.GetFolderWearablesAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryWearable\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.GetDisplayNamesAsync(System.Collections.Generic.List{LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, LibreMetaverse.AgentDisplayName[], LibreMetaverse.UUID[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectMediaAsync(LibreMetaverse.UUID,LibreMetaverse.Simulator,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.MediaEntry[]\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.GetP2PCallInfo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Boolean, System.Nullable\u003CSystem.DateTime\u003E\u003E" + } + ] + }, + { + "doc_id": "T:System.ValueTuple\u00604", + "signature": "System.ValueTuple\u003CT1, T2, T3, T4\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.Gltf.GltfDocument.GetJoints(LibreMetaverse.Assets.Gltf.GltfPrimitive,System.Int32)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.UInt16, System.UInt16, System.UInt16, System.UInt16\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategoryCategoriesAsync(LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchCategorySubsetAsync(LibreMetaverse.UUID,System.Collections.Generic.IEnumerable{LibreMetaverse.UUID},System.Boolean,System.Boolean,System.Int32,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.FetchItemAsync(LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryChildrenAsync(System.String,System.Int32,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.GetCategoryLinksAsync(System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.Collections.Generic.List\u003CLibreMetaverse.InventoryFolder\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E, System.Collections.Generic.List\u003CLibreMetaverse.InventoryItem\u003E\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestCreateItemFromAssetAsync(System.Byte[],System.String,System.String,LibreMetaverse.AssetType,LibreMetaverse.InventoryType,LibreMetaverse.UUID,LibreMetaverse.Permissions,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialAgentInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateMaterialTaskInventoryAsync(LibreMetaverse.Assets.AssetMaterial,LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateNotecardTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadGestureAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUploadNotecardAssetAsync(System.Byte[],LibreMetaverse.UUID,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + } + ] + }, + { + "doc_id": "T:System.ValueTuple\u00606", + "signature": "System.ValueTuple\u003CT1, T2, T3, T4, T5, T6\u003E", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptAgentInventoryAsync(System.Byte[],LibreMetaverse.UUID,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, System.Boolean, System.Collections.Generic.List\u003CSystem.String\u003E, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateScriptTaskAsync(System.Byte[],LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean,System.Boolean,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "return_type", + "signature": "System.ValueTuple\u003CSystem.Boolean, System.String, System.Boolean, System.Collections.Generic.List\u003CSystem.String\u003E, LibreMetaverse.UUID, LibreMetaverse.UUID\u003E" + } + ] + }, + { + "doc_id": "T:System.ValueType", + "signature": "System.ValueType", + "kind": "class", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "T:LibreMetaverse.AISResponseMeta", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Animation", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Animesh.JointPose", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.AppearanceManager.ColorParamInfo", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ArchetypeParam", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Assets.GltfTextureTransform", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttentionData", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.AttentionSet", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Avatar.Attachment", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Avatar.AvatarProperties", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Avatar.Interests", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Avatar.Statistics", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.AvatarGroup", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.BuddyListEntry", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ChatSessionMember", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ClassifiedAd", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Color4", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.AgentSearchData", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.Classified", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.DirectoryParcel", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventInfo", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.EventsSearchData", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.GroupSearchData", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DirectoryManager.PlacesSearchData", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.DrivenParamInfo", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.GroundTextureHeight", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.GroundTextureHeightSettings", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.EstateTools.GroundTextureSettings", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GenepoolArchetype", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GrassDefinition", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridLayer", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GridRegion", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Group", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupAccountSummary", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupMember", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupNotice", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupNoticesListEntry", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupProposal", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupRole", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.GroupTitle", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.HttpCapsClient.ProgressReport", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.InstantMessage", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.LiveParticle", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.LslSyntax.LslKeyword", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Matrix4", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.NameValue", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ObjectMovementUpdate", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Packets.Header", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelInfo", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelManager.ParcelAccessEntry", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelManager.ParcelPrimOwners", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ParcelMedia", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Permissions", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.Coord", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.Face", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.PathNode", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.Quat", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.UVCoord", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.ViewerFace", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.ViewerPolygon", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.PrimMesher.ViewerVertex", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.ParticleSystem", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Primitive.TextureAnimation", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.ProfilePick", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Quaternion", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Ray", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.BoneTransform", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.Face", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.Face", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.Morph", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.MorphVertex", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.SkinWeightElement", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.Vertex", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.LindenMesh.VertexRemap", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.Path", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.PathPoint", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.Profile", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.ProfileFace", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.Vertex", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Rendering.VertexWeight", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.SkeletalBoneInfo", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.GroupHeader", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.TerrainPatch.Header", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticReadLock", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.OptimisticWriteLock", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.SpinReadLock", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.Disposers.SpinWriteLock", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.SpinLockSlim", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Threading.SpinReaderWriterLockSlim", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.TreeDefinition", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.UUID", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector2", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector3", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector3d", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vector4", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualAlphaParam", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualColorParam", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.VisualParam", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.Int3", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Voice.WebRTC.VoiceSession.Int4", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.VolumeMorphInfo", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.Vote", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.binBVHJoint", + "position": "base_type", + "signature": "System.ValueType" + }, + { + "owner_doc_id": "T:LibreMetaverse.binBVHJointKey", + "position": "base_type", + "signature": "System.ValueType" + } + ] + }, + { + "doc_id": "T:System.Void", + "signature": "System.Void", + "kind": "struct", + "assembly": { + "name": "System.Private.CoreLib", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "7cec85d7bea7798e" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ActivateGesture(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.LookDirection(System.Double)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Pitch(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Roll(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.SetPositionOrientation(LibreMetaverse.Vector3,System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.AgentCamera.Yaw(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.ResetControlFlags", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendManualUpdate(LibreMetaverse.AgentManager.ControlFlags,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Quaternion,System.Single,LibreMetaverse.AgentFlags,LibreMetaverse.AgentState,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendUpdate(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SendUpdate(System.Boolean,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.SetFOVVerticalAngle(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AgentMovement.UpdateFromHeading(System.Double,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Animate(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,System.Boolean},System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AnimationStart(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AnimationStop(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.Double,System.Double,System.Double)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilot(System.UInt64,System.UInt64,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.AutoPilotLocal(System.Int32,System.Int32,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.BeamEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.Color4,System.Single,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.CancelCrossing", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Chat(System.String,System.Int32,LibreMetaverse.ChatType,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.CompleteAgentMovement(LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Crouch(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeGrab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeactivateGesture(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.DeleteClassified(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Fly(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveAvatarMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveGroupMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveMoney(LibreMetaverse.UUID,System.Int32,System.String,LibreMetaverse.MoneyTransactionType,LibreMetaverse.TransactionFlags)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GiveObjectMoney(LibreMetaverse.UUID,System.Int32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Grab(System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GrabUpdate(LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GrabUpdate(LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Int32,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.GroupInviteRespond(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(LibreMetaverse.UUID,System.String,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.InstantMessageDialog,LibreMetaverse.InstantMessageOnline,LibreMetaverse.Vector3,LibreMetaverse.UUID,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessage(System.String,LibreMetaverse.UUID,System.String,LibreMetaverse.UUID,LibreMetaverse.UUID[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.InstantMessageGroup(System.String,LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Jump(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.LookAtEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.LookAtType,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ModerateChatSessions(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Boolean,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PayUploadFee(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PickDelete(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PickInfoUpdate(LibreMetaverse.UUID,System.Boolean,LibreMetaverse.UUID,System.String,LibreMetaverse.Vector3d,LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.PointAtEffect(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Vector3d,LibreMetaverse.PointAtType,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RemoveMuteListEntry(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ReplyToScriptDialog(System.Int32,System.Int32,System.String,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestBalance", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestJoinGroupChat(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestLeaveGroupChat(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestMuteList", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestScriptSensor(System.String,LibreMetaverse.UUID,LibreMetaverse.ScriptSensorTypeFlags,System.Single,System.Single,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestSit(LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.RequestTeleport(System.UInt64,LibreMetaverse.Vector3,LibreMetaverse.Vector3,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.ScriptQuestionReply(LibreMetaverse.Simulator,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.ScriptPermission)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLure(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLure(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SendTeleportLureRequest(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHeightWidth(System.UInt16,System.UInt16)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SetHome", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Sit", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SitOnGround", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.SphereEffect(LibreMetaverse.Vector3d,LibreMetaverse.Color4,System.Single,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportFailedEventHandler(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TeleportLureRespond(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.Touch(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.TrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UntrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,LibreMetaverse.Vector3d,System.String,System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateClassifiedInfo(LibreMetaverse.UUID,LibreMetaverse.DirectoryManager.ClassifiedCategories,LibreMetaverse.UUID,System.Int32,System.String,System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateInterests(LibreMetaverse.Avatar.Interests)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateMuteListEntry(LibreMetaverse.MuteType,LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateMuteListEntry(LibreMetaverse.MuteType,LibreMetaverse.UUID,System.String,LibreMetaverse.MuteFlags)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfile(LibreMetaverse.Avatar.AvatarProperties)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileNotes(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentManager.UpdateProfileUdp(LibreMetaverse.Avatar.AvatarProperties)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentThrottle.Set", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AgentThrottle.Set(LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.Advance(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimationTrack.EvaluatePose(System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Animesh.JointPose})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshManager.RemovePlayer(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshManager.Update(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Animesh.AnimeshPlayer.Update(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AnimeshSkinning.DeformVertices(LibreMetaverse.Rendering.Face,LibreMetaverse.Matrix4[],LibreMetaverse.Matrix4,System.Span{LibreMetaverse.Vector3},System.Span{LibreMetaverse.Vector3})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CompositeCurrentOutfitPolicy.RemovePolicy(LibreMetaverse.Appearance.ICurrentOutfitPolicy)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.CurrentOutfitFolder.RemovePolicy(LibreMetaverse.Appearance.ICurrentOutfitPolicy)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Appearance.InitialOutfitHandler.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddAttachments(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(LibreMetaverse.InventoryItem,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.AddToOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem},System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.InventoryItem,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Attach(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.String,LibreMetaverse.Permissions,System.UInt32,LibreMetaverse.AttachmentPoint,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.DecodeWearableParams(LibreMetaverse.AppearanceManager.WearableData,LibreMetaverse.AppearanceManager.TextureData[]@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Detach(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Detach(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RemoveFromOutfit(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RemoveFromOutfit(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.RequestCachedBakes", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AppearanceManager.UpdateLastReceivedCOFVersion(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.BeginPrune", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetCache.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestEstateAsset(LibreMetaverse.AssetDownload,LibreMetaverse.EstateAssetType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AssetManager.RequestImageCancel(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.Asset.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetAnimation.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetCallingCard.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetGesture.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetLandmark.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.ApplyOverride(LibreMetaverse.Assets.AssetMaterial)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaCutoff(System.Single,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetAlphaMode(LibreMetaverse.Assets.GltfAlphaMode,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetBaseColorFactor(LibreMetaverse.Color4,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetBaseMaterial", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetDoubleSided(System.Boolean,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetEmissiveFactor(LibreMetaverse.Vector3,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetMetallicFactor(System.Single,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetRoughnessFactor(System.Single,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureId(System.Int32,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureOffset(System.Int32,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureRotation(System.Int32,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMaterial.SetTextureScale(System.Int32,LibreMetaverse.Vector2)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMesh.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetMutable.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetNotecard.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetScriptBinary.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetScriptText.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSettings.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetSound.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetTexture.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetWearable.Encode", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetsArchiver.Archive(LibreMetaverse.Assets.TarArchiveWriter)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.AssetLoadedCallback.Invoke(LibreMetaverse.Assets.Asset,System.Int64,System.Int64)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.ClearAssetFolder(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.LoadObjects(System.Byte[],LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,System.Int64,System.Int64)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.PackageArchive(System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SOGToXml2(System.Xml.XmlTextWriter,LibreMetaverse.Assets.AssetPrim)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveParcels(LibreMetaverse.Simulator,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveRegionSettings(LibreMetaverse.Simulator,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SaveTerrain(LibreMetaverse.Simulator,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback.Invoke(LibreMetaverse.Assets.AssetPrim,System.Int64,System.Int64)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SettingsLoadedCallback.Invoke(System.String,LibreMetaverse.Assets.RegionSettings)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.TerrainLoadedCallback.Invoke(System.Single[0:,0:],System.Int64,System.Int64)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.UnpackageArchive(System.String,LibreMetaverse.Assets.OarFile.AssetLoadedCallback,LibreMetaverse.Assets.OarFile.TerrainLoadedCallback,LibreMetaverse.Assets.OarFile.SceneObjectLoadedCallback,LibreMetaverse.Assets.OarFile.SettingsLoadedCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.FlexibleBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.InventoryBlock.ItemBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.LightBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.ParticlesBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.SculptBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.PrimObject.ShapeBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.RegionSettings.ToXML(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveReader.Close", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.Close", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteDir(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Assets.TarArchiveWriter.WriteFile(System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceEncodedSample(System.UInt32,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.AudioSource_OnAudioSourceRawSample(SIPSorceryMedia.Abstractions.AudioSamplingRatesEnum,System.UInt32,System.Int16[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.ClearSsrc(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.CloseRecordingSource", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.DisableAudioProcessing", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.EnableAudioProcessing(System.Boolean,System.Boolean,System.Boolean,System.Boolean,SoundFlow.Extensions.WebRtc.Apm.NoiseSuppressionLevel,System.Boolean,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedEncodedSample(System.UInt32,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmBytes(System.Byte[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.FeedPcmSamples(System.Int16[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayFileLoop(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayFileOnce(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.PlayRtpPacket(System.UInt32,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetCaptureGainPercent(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetPlaybackDevice(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetPlaybackVolume(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetRecordingDevice(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcGainPercent(System.UInt32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.SetSsrcMute(System.UInt32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartFilePlayback(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmFileLoop(System.String,System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRawPcmStream(System.IO.Stream,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StartRecording", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StopFile", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StopFilePlayback", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StopRawPcmStream", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AudioDevice.StopRecording", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarClassified(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarName(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNameSearch(System.String,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNames(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarNotes(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarPicks(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestAvatarProperties(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestClassifiedInfo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestOwnAvatarTextures", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestPickInfo(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.AvatarManager.RequestTrackAgent(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBit(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBits(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackBits(System.UInt32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackColor(LibreMetaverse.Color4)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFixed(System.Single,System.Boolean,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackFloat(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.BitPack.PackUUID(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CRC32.Update(System.Byte[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Add(System.Collections.Generic.KeyValuePair{\u00600,\u00601})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Add(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CacheDictionaryEnumerator.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CacheDictionary\u00602.CopyTo(System.Collections.Generic.KeyValuePair{\u00600,\u00601}[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.Disconnect(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.EventQueueCallback.Invoke(System.String,LibreMetaverse.Interfaces.IMessage,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsEventDictionary.RegisterEvent(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsEventDictionary.UnregisterEvent(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.RegisterCapUri(System.String,System.Uri)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToBytes(System.Byte[],System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Color4.ToFloatBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.LookAt(LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(LibreMetaverse.Vector3,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.LookDirection(System.Double)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Pitch(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.ResetAxes", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Roll(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(LibreMetaverse.Matrix4)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Rotate(System.Single,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.CoordinateFrame.Yaw(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DictionaryChangeCallback.Invoke(LibreMetaverse.DictionaryEventAction,System.Collections.DictionaryEntry)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.EventInfoRequest(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.DirFindFlags,LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DirectoryManager.StartLandSearch(LibreMetaverse.DirectoryManager.SearchTypeFlags,System.Int32,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.DisposalGuard.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeCancelAndDispose(System.Threading.CancellationTokenSource,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDispose(System.IDisposable,System.String,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeAll(System.Collections.Generic.IEnumerable{System.IDisposable},System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DisposalHelper.SafeDisposeClear\u0060\u00601(System.Collections.Generic.ICollection{\u0060\u00600},System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Add(\u00600,\u00601,\u00602)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00600,\u00602}})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{System.Collections.Generic.KeyValuePair{\u00601,\u00602}})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.DoubleDictionary\u00603.ForEach(System.Action{\u00602})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.KeyAccessed(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.KeyAdded(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EmptyRemovalStrategy\u00601.KeyRemoved(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EnvironmentManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.AddAllowedGroup(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.AddAllowedUser(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.AddEstateManager(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.BanUser(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.CancelRestart", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateMessage(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.Collections.Generic.List{System.String})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.EstateOwnerMessage(System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.KickUser(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.LandStatRequest(System.Int32,LibreMetaverse.EstateTools.LandStatReportType,System.UInt32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RemoveAllowedGroup(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RemoveAllowedUser(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RemoveEstateManager(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestCovenant", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestInfo", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestTopColliders", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RequestTopScripts", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RestartRegion", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.RestartRegion(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SendEstateChangeInfoDataserver(System.String,System.Single,LibreMetaverse.RegionFlags)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionDebug(System.Boolean,System.Boolean,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionInfoUdp(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,System.Single,LibreMetaverse.EstateTools.RegionMaturity)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrain(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetRegionTerrainHeights(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SetTerrainVariables(System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SimWideReturn(LibreMetaverse.UUID,LibreMetaverse.EstateTools.EstateReturnFlags,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.SimulatorMessage(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.TeleportHomeAllUsers", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.TeleportHomeUser(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EstateTools.UnbanUser(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscriptionHelper.WaitForCondition\u0060\u00601(System.Action{System.EventHandler{\u0060\u00600}},System.Action{System.EventHandler{\u0060\u00600}},System.Func{\u0060\u00600,System.Boolean},System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.EventSubscription\u00601.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.CopyTo(System.Array,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ExpiringCache\u00602.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Formatters.UUIDFormatter.Serialize(MessagePack.MessagePackWriter@,LibreMetaverse.UUID,MessagePack.MessagePackSerializerOptions)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.AcceptCallingCard(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.AcceptFriendship(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.DeclineCallingCard(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.DeclineFriendship(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.GiveCallingCard(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.GrantRights(LibreMetaverse.UUID,LibreMetaverse.FriendRights)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.MapFriend(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.OfferFriendship(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.OfferFriendship(LibreMetaverse.UUID,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.OnFindAgentReplyHandler(System.Object,LibreMetaverse.PacketReceivedEventArgs)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.RequestOnlineNotification(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.TerminateFriendship(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.FriendsManager.TrackFriend(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridClient.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMainlandSims(LibreMetaverse.GridLayerType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapBlocks(LibreMetaverse.GridLayerType,System.UInt16,System.UInt16,System.UInt16,System.UInt16,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapItems(System.UInt64,LibreMetaverse.GridItemType,LibreMetaverse.GridLayerType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestMapRegion(System.String,LibreMetaverse.GridLayerType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GridManager.RequestRegionHandle(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.ActivateGroup(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.ActivateTitle(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.AddToRole(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.CreateRole(LibreMetaverse.UUID,LibreMetaverse.GroupRole)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.DeleteRole(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.EjectUser(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.Invite(LibreMetaverse.UUID,System.Collections.Generic.List{LibreMetaverse.UUID},LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.LeaveGroup(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RemoveFromRole(LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestCreateGroup(LibreMetaverse.Group)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestCurrentGroups", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupAccountSummary(LibreMetaverse.UUID,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupName(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNames(System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNotice(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupNoticesList(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestGroupProfile(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.RequestJoinGroup(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.SendGroupNotice(LibreMetaverse.UUID,LibreMetaverse.GroupNotice)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.SetGroupAcceptNotices(LibreMetaverse.UUID,System.Boolean,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.SetGroupContribution(LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.StartProposal(LibreMetaverse.UUID,LibreMetaverse.GroupProposal)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.UpdateGroup(LibreMetaverse.UUID,LibreMetaverse.Group)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.GroupManager.UpdateRole(LibreMetaverse.GroupRole)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.CopyStream(System.IO.Stream,System.IO.Stream)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Helpers.SafeAction(System.Action,System.String,System.Action{System.String,System.Exception})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownload(LibreMetaverse.Http.DownloadRequest)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownload(LibreMetaverse.Http.DownloadRequest,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.ConnectedCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.EventCallback.Invoke(System.String,LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.Start", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.Stop(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.KeyAccessed(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.KeyAdded(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ICacheDictionaryRemovalStrategy\u00601.KeyRemoved(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Baker.AddTexture(LibreMetaverse.AppearanceManager.TextureData)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.Baker.Bake", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ConvertChannels(LibreMetaverse.Imaging.ManagedImage.ImageChannels)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeBilinear(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Imaging.ManagedImage.ResizeNearestNeighbor(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelFace.AddVertex(LibreMetaverse.Rendering.Vertex)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelPrim.CreateAsset(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InterestListManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Interfaces.IByteBufferPool.ReturnBytes(System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Interfaces.IMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.RemoveNodeFor(LibreMetaverse.InventoryBase)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.SaveToDisk(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Inventory.UpdateNodeFor(LibreMetaverse.InventoryBase)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryAISClient.ParseEmbedded(LibreMetaverse.StructuredData.OSDMap,System.Collections.Generic.List{LibreMetaverse.InventoryFolder}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@,System.Collections.Generic.List{LibreMetaverse.InventoryItem}@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryFolder.Update(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryItem.Update(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.EmptyFolder(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.GiveItem(LibreMetaverse.UUID,System.String,LibreMetaverse.AssetType,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.Move(LibreMetaverse.InventoryBase,LibreMetaverse.InventoryFolder)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolder(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveFolders(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItem(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveItems(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.MoveTaskInventory(System.UInt32,LibreMetaverse.UUID,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RemoveTaskInventory(System.UInt32,LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestDeRezToInventory(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestDeRezToInventory(System.UInt32,LibreMetaverse.DeRezDestination,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFetchInventory(System.Collections.Generic.Dictionary{LibreMetaverse.UUID,LibreMetaverse.UUID},System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestGetScriptRunning(LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestSetScriptRunning(LibreMetaverse.UUID,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestTaskInventory(System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestTaskInventory(System.UInt32,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItem(LibreMetaverse.InventoryItem)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItems(System.Collections.Generic.List{LibreMetaverse.InventoryItem})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestUpdateItems(System.Collections.Generic.List{LibreMetaverse.InventoryItem},LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.UpdateFolderProperties(LibreMetaverse.UUID,LibreMetaverse.UUID,System.String,LibreMetaverse.FolderType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryNodeDictionary.Add(LibreMetaverse.UUID,LibreMetaverse.InventoryNode)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryNodeDictionary.Remove(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.Exception,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Critical(System.Object,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.Exception,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Debug(System.Object,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.DebugLog(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.Exception,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Error(System.Object,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.Exception,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Info(System.Object,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient,System.Exception)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Log(System.Object,Microsoft.Extensions.Logging.LogLevel,System.Exception)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.LogCallback.Invoke(System.Object,Microsoft.Extensions.Logging.LogLevel)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.SetLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Shutdown", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.Exception,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Trace(System.Object,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.Exception,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Logger.Warn(System.Object,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LoginResponseData.ParseResult.Add(LibreMetaverse.LoginResponseData.ParseMessageLevel,System.String,System.Exception)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.KeyAccessed(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.KeyAdded(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LruRemovalStrategy\u00601.KeyRemoved(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslSyntax.Register(LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.AddToFunc.Invoke(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Builder.Invoke(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsException.Handle(LibreMetaverse.LslTools.ErrorHandler)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsFatalException.Handle(LibreMetaverse.LslTools.ErrorHandler)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSToolsStopException.Handle(LibreMetaverse.LslTools.ErrorHandler)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.CSymbol.AddStartItems(LibreMetaverse.LslTools.ParseState,LibreMetaverse.LslTools.SymbolSet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Dfa.SetTokens(LibreMetaverse.LslTools.YyLexer,System.Collections.Hashtable)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.Error(LibreMetaverse.LslTools.CSToolsException)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ErrorHandler.Report(LibreMetaverse.LslTools.CSToolsException)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.GenBase.Error(System.Int32,System.Int32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Advance", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(LibreMetaverse.LslTools.CsReader)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(System.IO.StreamReader)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.Start(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.UnGetChar", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer._Enumerator.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Lexer.yy_begin(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.backto(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.comment(System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.LineManager.newline(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddArc(System.Char,LibreMetaverse.LslTools.NfaNode)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddArcEx(LibreMetaverse.LslTools.Regex,LibreMetaverse.LslTools.NfaNode)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddEps(LibreMetaverse.LslTools.NfaNode)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddTarget(System.Char,LibreMetaverse.LslTools.Dfa)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.NfaNode.AddUArc(System.Char,LibreMetaverse.LslTools.NfaNode)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.Add(System.Object)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.OListEnumerator.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ObjectList.Push(System.Object)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.AddEntries", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.CheckClosure(LibreMetaverse.LslTools.ProdItem)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Closure", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.MaybeAdd(LibreMetaverse.LslTools.ProdItem)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.Print0", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParseState.ReduceStates", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Parser.Error(System.Int32,LibreMetaverse.LslTools.SYMBOL,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserAction.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserEntry.Pass(LibreMetaverse.LslTools.ParseStackEntry@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserReduce.BuildLookback(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserReduce.Pass(LibreMetaverse.LslTools.ParseStackEntry@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserShift.Pass(LibreMetaverse.LslTools.ParseStackEntry@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ParserSimpleAction.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Precedence.Check(LibreMetaverse.LslTools.Production)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ProdItem.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.AddFirst(LibreMetaverse.LslTools.CSymbol,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.AddToRhs(LibreMetaverse.LslTools.CSymbol)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Production.StackRef(System.String@,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Build(LibreMetaverse.LslTools.Nfa)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Regex.Print(System.IO.TextWriter)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.ResWds.Check(LibreMetaverse.LslTools.Lexer,LibreMetaverse.LslTools.TOKEN@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.ConcreteSyntaxTree", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SYMBOL.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser.Serialise(System.Object)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser.VersionCheck", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Serialiser._Write(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Add(LibreMetaverse.LslTools.SymbolSet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolSet.AddIn(LibreMetaverse.LslTools.CSymbol)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolSet.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.AssocType(LibreMetaverse.LslTools.Precedence.PrecType,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.ClassDefinition(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.CopySegment", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.Declare", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.OldAction(LibreMetaverse.LslTools.ParserOldAction)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.ParserDirective", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.SetNamespace", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.SetStartSymbol", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.SymbolsGen.SimpleAction(LibreMetaverse.LslTools.ParserSimpleAction)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.TOKEN.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.AddToFollow(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.AddToRead(LibreMetaverse.LslTools.Transition,LibreMetaverse.LslTools.SymbolSet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.BuildDR(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.BuildIncludes(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.BuildLA(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.BuildLookback(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.BuildParseTable(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.BuildReads(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.Final(LibreMetaverse.LslTools.Transition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.Print(LibreMetaverse.LslTools.SymbolSet,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.Transition.Print0", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.EmitDfa(System.IO.TextWriter)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyLexer.GetDfa", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.ClassInit(LibreMetaverse.LslTools.SymbolsGen)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.Emit(System.IO.TextWriter)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.GetEOF(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.GetParser(LibreMetaverse.LslTools.Lexer)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.PrintTransitions(LibreMetaverse.LslTools.Func,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.YyParser.Transitions(LibreMetaverse.LslTools.Builder)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.recoveredError.ConcreteSyntaxTree", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.LslTools.recoveredError.Print", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Matrix4.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AgentDropGroupMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AgentGroupDataUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AgentPreferencesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AgentProfileMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AgentStateUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AssetUploaderBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AttachmentResourcesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.AvatarRenderInfoMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.BaseResourcesInfo.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.BulkUpdateInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionAcceptInvitation.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestMuteUpdate.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatSessionRequestStartConference.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxInvitationMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionAgentListUpdatesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatterBoxSessionStartReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ChatterboxSessionEventReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.CopyInventoryFromNotecardMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.CrossedRegionMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.DirLandReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.DisplayNameUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EnableSimulatorMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EnvironmentData.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EventMessageBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueAck.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueEvent.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.EventQueueGetMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceInfoMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ExperienceListMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ExperiencePreferencesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ExtEnvironmentMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ForceCloseChatterBoxSessionMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.GetDisplayNamesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.GetObjectCostRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.InterestListMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesInfo.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.LandResourcesRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.LandStatReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.LegacyEnvironmentMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerMessageBase.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerReplyVariant.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.MapLayerRequestVariant.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.NavMeshStatusUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryUploadReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaNavigateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaResponse.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectMediaUpdate.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectPhysicsPropertiesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ObjectResourcesDetail.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ParcelObjectOwnersReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ParcelPropertiesUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ParcelResourcesDetail.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.PlacesReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ProductInfoRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ProvisionVoiceAccountRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RegionExperiencesMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RegionInfoMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestReply.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RemoteParcelRequestRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RenderMaterialsMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.RequiredVoiceVersionMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ScriptRunningReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestBlock.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestReply.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SearchStatRequestRequest.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SendPostcardMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SetDisplayNameReplyMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.SimConsoleResponseMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFailedMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.TeleportFinishMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInformationMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentInventoryRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateAgentLanguageMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateGestureAgentInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardAgentInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateNotecardTaskInventoryMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptAgentRequestMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UpdateScriptTaskUpdateMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploadBakedTextureMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.ExtraParam.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploadObjectAssetMessage.Object.Face.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploadScriptTaskMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestComplete.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestScriptComplete.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploaderRequestUpload.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.UploaderScriptRequestError.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ViewerBenefitsMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.Linden.ViewerStatsMessage.Deserialize(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.Initialize(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.KeyAccessed(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.KeyAdded(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MruRemovalStrategy\u00601.KeyRemoved(\u00600)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Add(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.AddRange(\u00600,System.Collections.Generic.IEnumerable{\u00601})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.MultiValueDictionary\u00602.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.AbortLogin", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.BeginLogin(LibreMetaverse.LoginParams)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.BeginLogout", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.DisconnectSim(LibreMetaverse.Simulator,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.EnqueueIncoming(LibreMetaverse.NetworkManager.IncomingPacket)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.EnqueueOutgoing(LibreMetaverse.NetworkManager.OutgoingPacket)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.LoginResponseCallback.Invoke(System.Boolean,System.Boolean,System.String,System.String,LibreMetaverse.LoginResponseData)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Logout", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RefreshMac", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterEventCallback(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RegisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback,System.String[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.RequestLogout", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.SendPacket(LibreMetaverse.Packets.Packet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.SendPacket(LibreMetaverse.Packets.Packet,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Shutdown(LibreMetaverse.NetworkManager.DisconnectType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Shutdown(LibreMetaverse.NetworkManager.DisconnectType,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.UnregisterCallback(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.UnregisterEventCallback(System.String,LibreMetaverse.Caps.EventQueueCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.UnregisterLoginResponseCallback(LibreMetaverse.NetworkManager.LoginResponseCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AddGrass(LibreMetaverse.Simulator,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.Grass,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AddPrim(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ConstructionData,LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AddPrim(LibreMetaverse.Simulator,LibreMetaverse.Primitive.ConstructionData,LibreMetaverse.UUID,LibreMetaverse.Vector3,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.PrimFlags)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AddTree(LibreMetaverse.Simulator,LibreMetaverse.Vector3,LibreMetaverse.Quaternion,LibreMetaverse.Vector3,LibreMetaverse.Tree,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.AttachObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.AttachmentPoint,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.BuyObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32,LibreMetaverse.UUID,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.CleanupObjectTracking", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeedObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeedObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DelinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeselectObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DeselectObjects(LibreMetaverse.Simulator,System.UInt32[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DetachObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.DropObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.LinkPrims(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectPropertiesFamily(LibreMetaverse.Simulator,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjectPropertiesFamily(LibreMetaverse.Simulator,LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestObjects(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.RequestPayPrice(LibreMetaverse.Simulator,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObject(LibreMetaverse.Simulator,System.UInt32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SelectObjects(LibreMetaverse.Simulator,System.UInt32[],System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetDescription(LibreMetaverse.Simulator,System.UInt32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetDescriptions(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetExtraParamOff(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.ExtraParamType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlags(LibreMetaverse.Simulator,System.UInt32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,LibreMetaverse.PhysicsShapeType,System.Single,System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetFlexible(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.FlexibleData)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetLight(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.LightData)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetMaterial(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Material)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetName(LibreMetaverse.Simulator,System.UInt32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetNames(LibreMetaverse.Simulator,System.UInt32[],System.String[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetObjectsGroup(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPermissions(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.PermissionWho,LibreMetaverse.PermissionMask,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetPosition(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetRotation(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Quaternion,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.Collections.Generic.List{System.UInt32},LibreMetaverse.SaleType,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSaleInfo(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.SaleType,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetScale(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,System.Boolean,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetSculpt(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.SculptData)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetShape(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.ConstructionData)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.SetTextures(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Primitive.TextureEntry,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.TrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.UntrackObjectInSimulator(LibreMetaverse.UUID,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObjectManager.UpdateObject(LibreMetaverse.Simulator,System.UInt32,LibreMetaverse.Vector3,LibreMetaverse.UpdateType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Add(\u00600,\u00601)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.AddDelegate(LibreMetaverse.DictionaryEventAction,LibreMetaverse.DictionaryChangeCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ObservableDictionary\u00602.RemoveDelegate(LibreMetaverse.DictionaryEventAction,LibreMetaverse.DictionaryChangeCallback)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketEventDictionary.InvokeRaiseEvent(LibreMetaverse.Packets.PacketType,LibreMetaverse.Packets.Packet,LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketEventDictionary.RegisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs},System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PacketEventDictionary.UnregisterEvent(LibreMetaverse.Packets.PacketType,System.EventHandler{LibreMetaverse.PacketReceivedEventArgs})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AbortXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AcceptFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGesturesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ActivateGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AddCircuitCodePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAlertMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTexturePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentCachedTextureResponsePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDataUpdateRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentDropGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FOVBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentFOVPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentGroupDataUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.HeightWidthBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentHeightWidthPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentIsNowWearingPacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentMovementCompletePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentPausePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.FuseBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentQuitCopyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentRequestSitPacket.TargetObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentResumePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSetAppearancePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentSitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentThrottlePacket.ThrottleBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AgentWearablesUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AlertMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadCompletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.AssetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AssetUploadRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AtomicPassObjectPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundGainChangePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AttachedSoundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.AnimationSourceListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.PhysicalAvatarEventListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AppearanceHoverBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarAppearancePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarClassifiedReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.NewGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarGroupsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarInterestsUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarNotesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPickerRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPicksReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesReplyPacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarPropertiesUpdatePacket.PropertiesDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitObjectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarSitResponsePacket.SitTransformBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.AvatarTextureUpdatePacket.WearableDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BulkUpdateInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.BuyObjectInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.CameraCollidePlaneBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CameraConstraintPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CancelAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeInventoryItemFlagsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChangeUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatFromViewerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.ChatDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChatPassPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelAuctionsPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CheckParcelSalesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentAlivePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentDyingPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentPositionUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUnknownPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentAccessBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AgentInventoryHostBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.AnimationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GranterBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.NVPairDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ChildAgentUpdatePacket.VisualParamBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedGodDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClassifiedInfoUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ClearFollowCamPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CloseCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.IndexBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.LocationBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CoarseLocationUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAgentMovementPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompleteAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CompletePingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.AuctionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmAuctionStartPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmEnableSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ConfirmXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryFromNotecardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CopyInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestExtendedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateLandmarkForEventPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateNewOutfitAttachmentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CreateTrustedCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.CrossedRegionPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataHomeLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DataServerLogoutPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezAckPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeRezObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeactivateGesturesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineCallingCardPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DeclineFriendshipPacket.TransactionBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DenyTrustedCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DerezContainerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DetachAttachmentIntoInvPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirClassifiedReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirEventsReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirFindQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirGroupsReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirLandReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPeopleReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPlacesReplyPacket.StatusDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryBackendPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DirPopularReplyPacket.QueryRepliesBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.DisableSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EconomyDataRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.EdgeDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EdgeDataPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.EjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectGroupMemberRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EjectUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EmailMessageRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EnableSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ErrorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateCovenantRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EstateOwnerMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventGodDeletePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventLocationRequestPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationAddRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.EventDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.EventNotificationRemoveRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FailureInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FeatureDisabledPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryDescendentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FetchInventoryReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.LocationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FindAgentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.HeaderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceObjectSelectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ForceScriptControlReleasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FormFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.FreezeUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.AxisDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GameControlInputPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GenericStreamingMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodKickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodUpdateRegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GodlikeMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.GrantDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantGodlikePowersPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GrantUserRightsPacket.RightsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountDetailsRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountSummaryRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.HistoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupAccountTransactionsRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupActiveProposalsRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.AgentGroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupDataUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupMembersRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeAddPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticeRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupNoticesListRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProfileRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupProposalBallotPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleChangesPacket.RoleChangeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataReplyPacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleDataRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.MemberDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleMembersRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupRoleUpdatePacket.RoleDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitleUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupTitlesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.HistoryItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryItemReplyPacket.VoteItemBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.GroupVoteHistoryRequestPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.AcksToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.FromBytes(System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Header.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.HealthDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.HealthMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageDataPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImageNotInDatabasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.ImageIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImagePacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.EstateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MessageBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.MetaDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedInstantMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ImprovedTerseObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FileDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InitiateDownloadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InternalScriptMailPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryAssetResponsePacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InventoryDescendentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.InviteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.InviteGroupResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestExtendedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.JoinGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserAckPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KickUserPacket.UserInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.IDBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillChildAgentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.KillObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LandStatRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LargeGenericMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.LayerIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LayerDataPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LeaveGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LinkInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupReplyPacket.ReplyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LiveHelpGroupRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LoadURLPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.DwellInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogDwellTimePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogFailedMoneyTransactionPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogParcelChangesPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogTextMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.LogoutRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockReplyPacket.SizeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapBlockRequestPacket.PositionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemReplyPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapItemRequestPacket.RequestDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.LayerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapLayerRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.NameDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MapNameRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.MeanCollisionBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MeanCollisionAlertPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.MasterParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MergeParcelPacket.SlaveParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ModifyBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ModifyLandPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyBalanceRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferBackendPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoneyTransferRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MoveTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MultipleObjectUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.MuteListUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.LandingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionRequestPacket.RequestingRegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NearestLandingRegionUpdatedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NeighborListPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.NetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.NetTestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAddPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.AnimationListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAnimationPacket.SenderBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectAttachPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBuyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectBypassModUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectCategoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectClickActionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDelinkPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDescriptionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDeselectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDetachPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDropPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicateOnRayPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectDuplicatePacket.SharedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExportSelectedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectExtraParamsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.ExtraPhysicsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectFlagUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabPacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGrabUpdatePacket.SurfaceInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectImagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectIncludeInSearchPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectLinkPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectMaterialPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectNamePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectOwnerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPermissionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPositionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesFamilyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectRotationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSaleInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectScalePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSelectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectShapePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStartPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinStopPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectSpinUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCachedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdateCompressedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ObjectUpdatePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfferCallingCardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OfflineNotificationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.AgentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OnlineNotificationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.CircuitInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.OpenCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.Packet.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketAckPacket.PacketsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PacketBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.ListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAccessListUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelAuctionsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelBuyPassPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelClaimPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDeedToGroupPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDisableObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDividePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelDwellRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodForceOwnerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelGodMarkAsContentPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelJoinPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.CommandBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaCommandMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.DataBlockExtendedBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelMediaUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelObjectOwnersRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelOverlayPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.AgeVerificationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.ParcelEnvironmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesPacket.RegionAllowAccessBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestByIDPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesRequestPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelPropertiesUpdatePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReclaimPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReleasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelRenamePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.OwnerIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelReturnObjectsPacket.TaskIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSalesPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSelectObjectsPacket.ReturnIDsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ParcelSetOtherCleanTimePacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ButtonDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PayPriceReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickGodDeletePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PickInfoUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesQueryPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PlacesReplyPacket.TransactionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PreloadSoundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.PurgeInventoryDescendentsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RebakeAvatarTexturesPacket.TextureDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RedoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandleRequestPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfo4Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakePacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionHandshakeReplyPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionIDAndHandleReplyPacket.ReplyBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.CombatSettingsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo2Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo3Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfo5Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionInfoPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByHandlePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceRequestByRegionIDPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RegionPresenceResponsePacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveAttachmentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.ItemDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveInventoryObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveMuteListEntryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.NameValueDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveNameValuePairPacket.TaskDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RemoveTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReplyTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.AutosaveDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ReportAutosaveCrashPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestGodlikePowersPacket.RequestBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestImagePacket.RequestImageBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestInventoryAssetPacket.QueryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestMultipleObjectsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestObjectPropertiesFamilyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestParcelTransferPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestPayPricePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestRegionInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestTrustedCircuitPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RequestXferPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveIMsExtendedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RetrieveInstantMessagesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RevokePermissionsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.HeaderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezMultipleAttachmentsFromInvPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.NotecardDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectFromNotecardPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezObjectPacket.RezDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezRestoreToWorldPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezScriptPacket.UpdateBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RezSingleAttachmentFromInvPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.MoneyDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RoutedMoneyBalanceReplyPacket.TransactionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcChannelRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptReplyInboundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundForwardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.RpcScriptRequestInboundPacket.TargetBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SaveAssetIntoInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptAnswerYesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptControlChangePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDataRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.ButtonsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.OwnerDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptDialogReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptMailRegistrationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.ExperienceBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptQuestionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptResetPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptRunningReplyPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorReplyPacket.SensedDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptSensorRequestPacket.RequesterBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.OptionsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ScriptTeleportRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendPostcardPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.DataPacketBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SendXferPacketPacket.XferIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetAlwaysRunPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetCPURatioPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.CameraPropertyBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetFollowCamPropertiesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.NewDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupAcceptNoticesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetGroupContributionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetScriptRunningPacket.ScriptBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimPresenceInDatabasePacket.SimDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetSimStatusInDatabasePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SetStartLocationRequestPacket.StartLocationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.DataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimCrashedPacket.UsersBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.PidStatBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.RegionInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatsPacket.StatBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimFlagsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimStatusPacket.SimStatusBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimWideDeletesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.AgentListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorLoadPacket.SimulatorLoadBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorMapUpdatePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.SimulatorPublicHostBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorPresentAtLocationPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.SimulatorBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorReadyPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.MapDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorSetMapPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorShutdownRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SimulatorViewerTimeMessagePacket.TimeInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SoundTriggerPacket.SoundDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartGroupProposalPacket.ProposalDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartLurePacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StartPingCheckPacket.PingIDBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.DataBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.StateSavePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SubscribeLoadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.AgentInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemKickUserPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.MethodDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.SystemMessagePacket.ParamListBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TallyVotesPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.SpawnPointBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TelehubInfoPacket.TelehubBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportCancelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.AlertInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFailedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportFinishPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandingStatusChangedPacket.RegionDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLandmarkRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocalPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLocationRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportLureRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportProgressPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.InfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TeleportStartPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.ExBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TerminateFriendshipPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.NeighborBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TestMessagePacket.TestBlock1Block.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TrackAgentPacket.TargetDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferAbortPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInfoPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryAckPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InfoBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.InventoryBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferInventoryPacket.ValidationBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferPacketPacket.TransferDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.TransferRequestPacket.TransferInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDGroupNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameReplyPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UUIDNameRequestPacket.UUIDNameBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoLandPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.ObjectDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UndoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UnsubscribeLoadPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.AttachmentBlockBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.OperationDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateAttachmentPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateCreateInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.GroupDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateGroupInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FolderDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryFolderPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateInventoryItemPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.MuteDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateMuteListEntryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateParcelPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateSimulatorPacket.SimulatorInfoBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.InventoryDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateTaskInventoryPacket.UpdateDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UpdateUserInfoPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCachedMuteListPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.CircuitCodeBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UseCircuitCodePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoReplyPacket.UserDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserInfoRequestPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportInternalPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.UserReportPacket.ReportDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOffPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.VelocityInterpolateOnPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.EffectBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerEffectPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.FrozenDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerFrozenMessagePacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStartAuctionPacket.ParcelDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.AgentDataBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.DownloadTotalsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FailStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(LibreMetaverse.Packets.Header,System.Byte[],System.Int32@,System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.FromBytes(System.Byte[],System.Int32@,System.Int32@,System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.MiscStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.FromBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.FromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.NetStatsBlock.ToBytes(System.Byte[],System.Int32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Packets.ViewerStatsPacket.PacketFromOSD(LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Parcel.Update(LibreMetaverse.GridClient,LibreMetaverse.Simulator,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Parcel.UpdateOtherCleanTime(LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Buy(LibreMetaverse.Simulator,System.Int32,System.Boolean,LibreMetaverse.UUID,System.Boolean,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.DeedToGroup(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.EjectUser(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.FreezeUser(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelJoin(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ParcelSubdivide(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Reclaim(LibreMetaverse.Simulator,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ReleaseParcel(LibreMetaverse.Simulator,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestDwell(LibreMetaverse.Simulator,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestObjectOwners(LibreMetaverse.Simulator,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelAccessList(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.AccessList,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelInfo(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestParcelProperties(LibreMetaverse.Simulator,System.Single,System.Single,System.Single,System.Single,System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.RequestSelectObjects(System.Int32,LibreMetaverse.ObjectReturnType,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.ReturnObjects(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.ObjectReturnType,System.Collections.Generic.List{LibreMetaverse.UUID})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.StartAuction(LibreMetaverse.Simulator,System.Int32,LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParcelManager.Terraform(LibreMetaverse.Simulator,System.Int32,System.Single,System.Single,System.Single,System.Single,LibreMetaverse.TerraformAction,LibreMetaverse.TerraformBrushSize,System.Int32,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ParticleSimulator.Tick(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Path.Create(LibreMetaverse.PrimMesher.PathType,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.AddRot(LibreMetaverse.PrimMesher.Quat)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.CalcNormals", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.DumpRaw(System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Extrude(LibreMetaverse.PrimMesher.PathType)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.PrimMesh.Scale(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(LibreMetaverse.PrimMesher.Coord)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddPos(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddRot(LibreMetaverse.PrimMesher.Quat)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddValue2FaceNormalIndices(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.AddValue2FaceVertexIndices(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.DumpRaw(System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.FlipNormals", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.MakeFaceUVs", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.Profile.Scale(System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddPos(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.AddRot(LibreMetaverse.PrimMesher.Quat)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.DumpRaw(System.String,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.SculptMesh.Scale(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddPos(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.AddRot(LibreMetaverse.PrimMesher.Quat)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.CalcSurfaceNormal", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.PrimMesher.ViewerFace.Scale(System.Single,System.Single,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Primitive.ObjectProperties.SetFamilyProperties(LibreMetaverse.Primitive.ObjectProperties)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.DecodeMapFile(System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.ProtocolManager.PrintMap", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetAxisAngle(LibreMetaverse.Vector3@,System.Single@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.GetEulerAngles(System.Single@,System.Single@,System.Single@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Quaternion.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.BlacklistBehavior(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.RLV.RlvBlacklist.UnBlacklistBehavior(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAnimatedBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarBoneMath.ComputeAttachmentBoneWorldMatrices(LibreMetaverse.Rendering.LindenAvatarDefinition,System.Collections.Generic.Dictionary{System.String,LibreMetaverse.Rendering.BoneTransform},System.Collections.Generic.IReadOnlyDictionary{System.String,System.Numerics.Quaternion},System.Collections.Generic.Dictionary{System.String,System.Numerics.Matrix4x4})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetBonePositionProvider(System.Func{System.String,System.Numerics.Vector3})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.AvatarPhysicsSimulator.SetWearableParams(System.Collections.Generic.IReadOnlyDictionary{System.Int32,System.Single})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.IRendering.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.LoadMesh(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.LindenMesh.ReferenceMesh.LoadMesh(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.MeshFoundry.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.PhysicsVolumeMorphs.VolumeMorph.Deconstruct(System.String@,System.Numerics.Vector3@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.RiggedSkinMath.NormalizeSkinWeights(System.Int32,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@,System.Int32@,System.Single@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Rendering.SimpleRenderer.TransformTexCoords(System.Collections.Generic.List{LibreMetaverse.Rendering.Vertex},LibreMetaverse.Vector3,LibreMetaverse.Primitive.TextureEntryFace,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Disconnect(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Pause", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.Resume", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SendPacket(LibreMetaverse.Packets.Packet)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SendPacketData(System.Byte[],System.Int32,LibreMetaverse.Packets.PacketType,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SendPing", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SetSeedCaps(System.Uri,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.AddRecvBytes(System.Int64)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.AddSentBytes(System.Int64)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementDroppedPackets", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementReceivedPongs", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementReceivedResends", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementRecvPackets", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementResentPackets", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementSentPackets", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.IncrementSentPings", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetConnectTime(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetIncomingBPS(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetLastPingSent(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SimStats.SetOutgoingBPS(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.UseCircuitCode(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorDataPool.ShutdownReaper", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorDataPool.SimulatorAdd(LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorDataPool.SimulatorRelease(LibreMetaverse.Simulator)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SimulatorFeatures.SetFeatures(System.Net.Http.HttpResponseMessage,System.Byte[],System.Exception)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.PlaySound(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Simulator,LibreMetaverse.Vector3,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,LibreMetaverse.Vector3,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.SoundManager.SendSoundTrigger(LibreMetaverse.UUID,System.UInt64,LibreMetaverse.Vector3,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.DeserializeMembers(System.Object@,LibreMetaverse.StructuredData.OSDMap)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Add(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.CopyTo(LibreMetaverse.StructuredData.OSD[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.Insert(System.Int32,LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDArray.RemoveAt(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD})", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Add(System.String,LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.Clear", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDMap.CopyTo(System.Collections.Generic.KeyValuePair{System.String,LibreMetaverse.StructuredData.OSD}[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlElement(System.Xml.XmlWriter,LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SkipWhiteSpace(System.IO.Stream)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatch(LibreMetaverse.BitPack,System.Single[0:,0:],System.Int32,System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.CreatePatchFromHeightmap(LibreMetaverse.BitPack,System.Single[],System.Int32,System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainCompressor.DecodePatch(System.Int32[],LibreMetaverse.BitPack,LibreMetaverse.TerrainPatch.Header,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TerrainManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TexturePipeline.AbortTextureRequest(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TexturePipeline.Shutdown", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.TexturePipeline.Startup", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticReadLock.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticUpgradeableLock.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.OptimisticWriteLock.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.SpinReadLock.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.SpinUpgradeableLock.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.Disposers.SpinWriteLock.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.Set", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IEventWait.WaitOne", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.EnterReadLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.EnterUpgradeableLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.EnterWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitReadLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitUpgradeableLock(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.ExitWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UncheckedExitUpgradeableLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UncheckedExitUpgradedLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UncheckedUpgradeToWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.IReaderWriterLockSlim.UpgradeToWriteLock(System.Boolean@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.Set", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedAutoResetEvent.WaitOne", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.Reset", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.Set", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedManualResetEvent.WaitOne", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Enter", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Enter(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Exit", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.ManagedSemaphore.Exit(System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.EnterReadLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.EnterUpgradeableLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.EnterWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitReadLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitUpgradeableLock(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.ExitWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UncheckedExitUpgradeableLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UncheckedExitUpgradedLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UncheckedUpgradeToWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.OptimisticReaderWriterLock.UpgradeToWriteLock(System.Boolean@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinLockSlim.Enter", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinLockSlim.Exit", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.EnterReadLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.EnterUpgradeableLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.EnterWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitReadLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitUpgradeableLock(System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.ExitWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UncheckedExitUpgradeableLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UncheckedExitUpgradedLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UncheckedUpgradeToWriteLock", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Threading.SpinReaderWriterLockSlim.UpgradeToWriteLock(System.Boolean@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPBase.AsyncBeginSend(LibreMetaverse.UDPPacketBuffer)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPBase.Start", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPBase.Stop", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.CopyFrom(System.Array,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UDPPacketBuffer.ResetEndpoint", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.Deconstruct(System.Guid@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.UUID.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.StayInSim(System.UInt64,LibreMetaverse.Vector3)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.ConnectionManager.Stop", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utilities.Realism.Chat(LibreMetaverse.GridClient,System.String,LibreMetaverse.ChatType,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.DoubleToBytes(System.Double,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.FloatToBytes(System.Single,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int16ToBytes(System.Int16,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Int64ToBytes(System.Int64,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.IntToBytes(System.Int32,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.LongToUInts(System.UInt64,System.UInt32@,System.UInt32@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.Swap\u0060\u00601(\u0060\u00600@,\u0060\u00600@)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytes(System.UInt16,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt16ToBytesBig(System.UInt16,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytes(System.UInt64,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UInt64ToBytesBig(System.UInt64,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytes(System.UInt32,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.UIntToBytesBig(System.UInt32,System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteDoubleLittleEndian(System.Byte[],System.Int32,System.Double)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Utils.WriteSingleLittleEndian(System.Byte[],System.Int32,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.FromBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.Normalize", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector2.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.FromBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.Normalize", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector3d.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.FromBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.Normalize", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Vector4.ToBytes(System.Byte[],System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.Disconnect", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnDisconnectedCallback.Invoke(System.Net.Sockets.SocketException)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.OnReceiveLineCallback.Invoke(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.SendData(System.Byte[])", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.TCPPipe.SendLine(System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonConnectedCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntConnectCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonCouldntRunCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonDisconnectedCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonExitedCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.DaemonRunningCallback.Invoke", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Start", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.StartDaemon(System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.Stop", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.StopDaemon", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceConnectionChangeCallback.Invoke(LibreMetaverse.Voice.Vivox.VoiceGateway.ConnectionState)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceGateway.VoiceMicTestCallback.Invoke(System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.AuxAudioPropertiesCallback.Invoke(System.Int32,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.BasicActionCallback.Invoke(System.Int32,System.Int32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ConnectorCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.DevicesCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.Dispose", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.LoginStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.NewSessionCallback.Invoke(System.Int32,System.String,System.String,System.Int32,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParcelVoiceInfoCallback.Invoke(System.String,System.Int32,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantPropertiesCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Single)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ParticipantStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.Int32,System.String,System.String,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.ProvisionAccountCallback.Invoke(System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionCreatedCallback.Invoke(System.Int32,System.Int32,System.String,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.EndInvoke(System.IAsyncResult)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.SessionStateChangeCallback.Invoke(System.Int32,System.String,System.Int32,System.String,System.String,System.Int32,System.Boolean,System.String)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceManager.StopDaemon", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.Vivox.VoiceSession.Set3DPosition(LibreMetaverse.Voice.Vivox.VoicePosition,LibreMetaverse.Voice.Vivox.VoicePosition)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Debug(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Error(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Info(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.IVoiceLogger.Warn(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Debug(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Error(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Info(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Log(System.String,Microsoft.Extensions.Logging.LogLevel,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.LibreMetaverseVoiceLogger.Warn(System.String,LibreMetaverse.GridClient)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ClearAllPeers", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessJsonElement(System.Text.Json.JsonElement,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessOSDMap(LibreMetaverse.StructuredData.OSDMap,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ReapStalePeers(System.TimeSpan)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.RemovePeer(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.DeclineIncomingP2PCall(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.DeclineP2PCall(LibreMetaverse.UUID)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.Disconnect", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayRawFile(System.String,System.Int32,System.Int32,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.PlayWavAsMic(System.String,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetPeerGain(LibreMetaverse.UUID,System.Int32)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.SetPeerMute(LibreMetaverse.UUID,System.Boolean)", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StopRawFile", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceManager.StopWavAsMic", + "position": "return_type", + "signature": "System.Void" + }, + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.VoiceSession.Dispose", + "position": "return_type", + "signature": "System.Void" + } + ] + }, + { + "doc_id": "T:System.Uri", + "signature": "System.Uri", + "kind": "class", + "assembly": { + "name": "System.Private.Uri", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "b03f5f7f11d50a3a" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "F:LibreMetaverse.Http.DownloadRequest.Address", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.AgentProfileMessage.PickData.Slurl", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.CrossedRegionMessage.SeedCapability", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.EstablishAgentCommunicationMessage.SeedCapability", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandResourcesMessage.ScriptResourceDetails", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.LandResourcesMessage.ScriptResourceSummary", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryReplyMessage.Uploader", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.NewFileAgentInventoryVariablePriceReplyMessage.Rsvp", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.ParcelVoiceInfoRequestMessage.SipChannelUri", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.TeleportFinishMessage.SeedCapability", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "F:LibreMetaverse.Messages.Linden.UploaderRequestUpload.Url", + "position": "field_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.Capabilities", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.CapabilityNameFromURI(System.Uri)", + "position": "parameter:cap", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.CapabilityURI(System.String)", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.GetMeshCapURI", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Caps.GetTextureCapURI", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.AcquireAsync(System.Uri,System.Threading.CancellationToken)", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.RegisterCapUri(System.String,System.Uri)", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:address", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.DownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken)", + "position": "parameter:address", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadManager.QueueDownloadAsync(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport},System.Threading.CancellationToken,System.Int32)", + "position": "parameter:address", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.DownloadRequest.#ctor(System.Uri,System.String,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:address", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Http.EventQueueClient.#ctor(System.Uri,LibreMetaverse.Simulator)", + "position": "parameter:eventQueueLocation", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.DeleteRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.GetRequestAsync(System.Uri,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PatchRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PostRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,LibreMetaverse.StructuredData.OSDFormat,LibreMetaverse.StructuredData.OSD,System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.HttpCapsClient.PutRequestAsync(System.Uri,System.String,System.Byte[],System.Threading.CancellationToken,System.IProgress{LibreMetaverse.HttpCapsClient.ProgressReport})", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.ImportExport.ModelUploader.PerformUploadAsync(System.Uri,System.Threading.CancellationToken)", + "position": "parameter:uploader", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.InventoryManager.RequestFolderContentsAsync(System.Collections.Generic.List{LibreMetaverse.InventoryFolder},System.Uri,System.Boolean,System.Boolean,LibreMetaverse.InventorySortOrder,System.Threading.CancellationToken)", + "position": "parameter:capabilityUri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.FromDictionaryUri(System.Collections.Generic.Dictionary{System.Uri,System.Uri})", + "position": "parameter:dict", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Messages.MessageUtils.ToDictionaryUri(LibreMetaverse.StructuredData.OSD)", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.Connect(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPAddress,System.UInt16,System.UInt64,System.Boolean,System.Uri)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.NetworkManager.ConnectAsync(System.Net.IPEndPoint,System.UInt64,System.Boolean,System.Uri,System.UInt32,System.UInt32)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.Simulator.SetSeedCaps(System.Uri,System.Boolean)", + "position": "parameter:seedcaps", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.AsUri", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.FromUri(System.Uri)", + "position": "parameter:value", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(LibreMetaverse.StructuredData.OSD)~System.Uri", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSD.op_Implicit(System.Uri)~LibreMetaverse.StructuredData.OSD", + "position": "parameter:value", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDString.AsUri", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUri.#ctor(System.Uri)", + "position": "parameter:uri", + "signature": "System.Uri" + }, + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDUri.AsUri", + "position": "return_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "P:LibreMetaverse.Caps.SeedCapsURI", + "position": "property_type", + "signature": "System.Uri" + }, + { + "owner_doc_id": "P:LibreMetaverse.NetworkManager.LoginSeedCapability", + "position": "property_type", + "signature": "System.Uri" + } + ] + }, + { + "doc_id": "T:System.Xml.XmlElement", + "signature": "System.Xml.XmlElement", + "kind": "class", + "assembly": { + "name": "System.Private.Xml", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "P:LibreMetaverse.ImportExport.Collada14.technique.Any", + "position": "property_type", + "signature": "System.Xml.XmlElement" + } + ] + }, + { + "doc_id": "T:System.Xml.XmlReader", + "signature": "System.Xml.XmlReader", + "kind": "class", + "assembly": { + "name": "System.Private.Xml", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.DeserializeLLSDXml(System.Xml.XmlReader)", + "position": "parameter:xmlData", + "signature": "System.Xml.XmlReader" + } + ] + }, + { + "doc_id": "T:System.Xml.XmlTextReader", + "signature": "System.Xml.XmlTextReader", + "kind": "class", + "assembly": { + "name": "System.Private.Xml", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.AssetPrim.LoadPrim(System.Xml.XmlTextReader)", + "position": "parameter:reader", + "signature": "System.Xml.XmlTextReader" + } + ] + }, + { + "doc_id": "T:System.Xml.XmlTextWriter", + "signature": "System.Xml.XmlTextWriter", + "kind": "class", + "assembly": { + "name": "System.Private.Xml", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Assets.OarFile.SOGToXml2(System.Xml.XmlTextWriter,LibreMetaverse.Assets.AssetPrim)", + "position": "parameter:writer", + "signature": "System.Xml.XmlTextWriter" + } + ] + }, + { + "doc_id": "T:System.Xml.XmlWriter", + "signature": "System.Xml.XmlWriter", + "kind": "class", + "assembly": { + "name": "System.Private.Xml", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.StructuredData.OSDParser.SerializeLLSDXmlElement(System.Xml.XmlWriter,LibreMetaverse.StructuredData.OSD)", + "position": "parameter:writer", + "signature": "System.Xml.XmlWriter" + } + ] + }, + { + "doc_id": "T:System.Text.Json.JsonElement", + "signature": "System.Text.Json.JsonElement", + "kind": "struct", + "assembly": { + "name": "System.Text.Json", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.Voice.WebRTC.PeerManager.ProcessJsonElement(System.Text.Json.JsonElement,System.Func{System.String,System.Boolean},LibreMetaverse.UUID)", + "position": "parameter:root", + "signature": "System.Text.Json.JsonElement" + } + ] + }, + { + "doc_id": "T:System.Threading.RateLimiting.RateLimitLease", + "signature": "System.Threading.RateLimiting.RateLimitLease", + "kind": "class", + "assembly": { + "name": "System.Threading.RateLimiting", + "version": "10.0.0.0", + "culture": "neutral", + "public_key_token": "cc7b13ffcd2ddd51" + }, + "mapping_status": "pending_rust_mapping", + "usages": [ + { + "owner_doc_id": "M:LibreMetaverse.CapsRateLimiter.AcquireAsync(System.Uri,System.Threading.CancellationToken)", + "position": "return_type", + "signature": "System.Threading.RateLimiting.RateLimitLease" + } + ] + } + ] +} diff --git a/crates/libremetaverse-rendering-mesh-foundry/src/lib.rs b/crates/libremetaverse-rendering-mesh-foundry/src/lib.rs index 791797c..32e8820 100644 --- a/crates/libremetaverse-rendering-mesh-foundry/src/lib.rs +++ b/crates/libremetaverse-rendering-mesh-foundry/src/lib.rs @@ -1,4 +1,4 @@ -//! MeshFoundry renderer corresponding to `LibreMetaverse.Rendering.MeshFoundry`. +//! `MeshFoundry` renderer corresponding to `LibreMetaverse.Rendering.MeshFoundry`. mod generated; diff --git a/tests/compat/src/lib.rs b/tests/compat/src/lib.rs index b55db7c..0c91dd7 100644 --- a/tests/compat/src/lib.rs +++ b/tests/compat/src/lib.rs @@ -1,6 +1,10 @@ //! Shared failure marker used by generated compatibility tests. /// Fails a not-yet-translated upstream test while retaining parity metadata. +/// +/// # Panics +/// +/// Always, with the retained upstream test identity. #[track_caller] pub fn pending(source: &str, line: u64, test: &str, attribute: &str, body_sha256: &str) -> ! { panic!( diff --git a/tools/api-catalog/ApiCatalog.csproj b/tools/api-catalog/ApiCatalog.csproj new file mode 100644 index 0000000..dab6122 --- /dev/null +++ b/tools/api-catalog/ApiCatalog.csproj @@ -0,0 +1,9 @@ + + + Exe + net10.0 + enable + enable + true + + diff --git a/tools/api-catalog/Program.cs b/tools/api-catalog/Program.cs new file mode 100644 index 0000000..40c9e57 --- /dev/null +++ b/tools/api-catalog/Program.cs @@ -0,0 +1,695 @@ +using System.Globalization; +using System.Reflection; +using System.Reflection.Metadata; +using System.Reflection.PortableExecutable; +using System.Runtime.Loader; +using System.Runtime.InteropServices; +using System.Security.Cryptography; +using System.Text.Json; +using System.Text.Json.Serialization; + +if (args is ["--self-test"]) +{ + ApiCatalog.SelfTest(); + return; +} + +if (args.Length < 10 || args[0] != "--output" || args[2] != "--upstream-commit" || + args[4] != "--target-framework" || args[6] != "--generated-root") +{ + throw new ArgumentException( + "usage: api-catalog --output PATH --upstream-commit HASH " + + "--target-framework TFM --generated-root PATH ASSEMBLY..."); +} + +ApiCatalog.Write( + Path.GetFullPath(args[1]), + args[3], + args[5], + Path.GetFullPath(args[7]), + args[8..].Select(Path.GetFullPath).ToArray()); + +internal static class ApiCatalog +{ + private static readonly JsonSerializerOptions JsonOptions = new() + { + DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, + PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower, + WriteIndented = true, + }; + + internal static void Write( + string output, + string upstreamCommit, + string targetFramework, + string generatedRoot, + string[] assemblyPaths) + { + if (assemblyPaths.Length != 13) + throw new InvalidOperationException($"expected 13 assemblies, found {assemblyPaths.Length}"); + + var pathsByName = Directory + .EnumerateFiles(CommonDirectory(assemblyPaths), "*.dll", SearchOption.AllDirectories) + .Concat(assemblyPaths) + .Distinct(StringComparer.Ordinal) + .Select(path => (Name: Path.GetFileNameWithoutExtension(path), Path: path)) + .Where(item => item.Name is not null) + .GroupBy(item => item.Name!, StringComparer.OrdinalIgnoreCase) + .ToDictionary(group => group.Key, group => group.Select(item => item.Path).Order(StringComparer.Ordinal).First(), StringComparer.OrdinalIgnoreCase); + AssemblyLoadContext.Default.Resolving += (_, name) => + name.Name is not null && pathsByName.TryGetValue(name.Name, out var path) + ? AssemblyLoadContext.Default.LoadFromAssemblyPath(path) + : null; + + var catalogAssemblyNames = assemblyPaths + .Select(path => AssemblyName.GetAssemblyName(path).Name!) + .ToHashSet(StringComparer.Ordinal); + var externalTypes = new Dictionary<(string Assembly, string DocId), ExternalTypeBuilder>(); + var assemblies = assemblyPaths + .Order(StringComparer.Ordinal) + .Select(path => ReadAssembly(path, catalogAssemblyNames, externalTypes)) + .OrderBy(assembly => assembly.Identity.Name, StringComparer.Ordinal) + .ToArray(); + var generators = ReadGenerators(generatedRoot); + var externalTypeCatalog = externalTypes.Values + .Select(builder => builder.Build()) + .OrderBy(type => type.Assembly.Name, StringComparer.Ordinal) + .ThenBy(type => type.DocId, StringComparer.Ordinal) + .ToArray(); + var catalog = new Catalog( + 1, + new Upstream( + "https://github.com/cinderblocks/libremetaverse", + upstreamCommit, + targetFramework), + generators, + new Summary( + assemblies.Length, + generators.Length, + assemblies.Sum(assembly => assembly.Counts.CatalogTypes), + assemblies.Sum(assembly => assembly.Counts.CatalogMembers), + externalTypeCatalog.Length), + assemblies, + externalTypeCatalog); + + Directory.CreateDirectory(Path.GetDirectoryName(output)!); + File.WriteAllText(output, JsonSerializer.Serialize(catalog, JsonOptions) + "\n"); + } + + private static AssemblyCatalog ReadAssembly( + string path, + HashSet catalogAssemblyNames, + Dictionary<(string Assembly, string DocId), ExternalTypeBuilder> externalTypes) + { + var assembly = AssemblyLoadContext.Default.LoadFromAssemblyPath(path); + var identity = assembly.GetName(); + var types = assembly.GetExportedTypes() + .Where(IsPubliclyVisible) + .OrderBy(TypeDocId, StringComparer.Ordinal) + .Select(type => + { + CollectExternalSurface(type, catalogAssemblyNames, externalTypes); + return ReadType(type); + }) + .ToArray(); + var duplicateDocIds = types.Select(type => type.DocId) + .Concat(types.SelectMany(type => type.Members.Select(member => member.DocId))) + .GroupBy(docId => docId, StringComparer.Ordinal) + .Where(group => group.Count() > 1) + .Select(group => group.Key) + .ToArray(); + if (duplicateDocIds.Length != 0) + throw new InvalidOperationException($"{identity.Name}: duplicate documentation IDs: {string.Join(", ", duplicateDocIds)}"); + var metadataCounts = ReadMetadataCounts(path); + var catalogMembers = types.Sum(type => type.Members.Length); + if (types.Length != metadataCounts.Types || catalogMembers != metadataCounts.Members) + { + throw new InvalidOperationException( + $"{identity.Name}: catalog/metadata mismatch: " + + $"types {types.Length}/{metadataCounts.Types}, members {catalogMembers}/{metadataCounts.Members}"); + } + + return new AssemblyCatalog( + new AssemblyIdentity( + identity.Name!, + identity.Version?.ToString() ?? "0.0.0.0", + string.IsNullOrEmpty(identity.CultureName) ? "neutral" : identity.CultureName, + Convert.ToHexString(identity.GetPublicKeyToken() ?? []).ToLowerInvariant(), + assembly.ManifestModule.ModuleVersionId.ToString("D"), + Path.GetFileName(path), + Convert.ToHexString(SHA256.HashData(File.ReadAllBytes(path))).ToLowerInvariant()), + new Counts(types.Length, catalogMembers, metadataCounts.Types, metadataCounts.Members), + types); + } + + private static TypeCatalog ReadType(Type type) + { + var nullability = new NullabilityInfoContext(); + var members = new List(); + + foreach (var constructor in type.GetConstructors(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly)) + members.Add(ReadMethod(type, constructor, "constructor", nullability)); + foreach (var method in type.GetMethods(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(method => !IsAccessor(method))) + members.Add(ReadMethod(type, method, "method", nullability)); + foreach (var property in type.GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(property => IsPublic(property.GetMethod) || IsPublic(property.SetMethod))) + members.Add(ReadProperty(type, property, nullability)); + foreach (var field in type.GetFields(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(field => !field.IsSpecialName)) + members.Add(ReadField(type, field, nullability)); + foreach (var @event in type.GetEvents(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(@event => IsPublic(@event.AddMethod) || IsPublic(@event.RemoveMethod) || IsPublic(@event.RaiseMethod))) + members.Add(ReadEvent(type, @event, nullability)); + + var delegateInvoke = typeof(MulticastDelegate).IsAssignableFrom(type.BaseType) + ? type.GetMethod("Invoke", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly) + : null; + return new TypeCatalog( + TypeDocId(type), + type.Namespace ?? "", + type.Name, + DisplayType(type), + TypeKind(type), + type.IsNested ? "nested_public" : "public", + type.IsAbstract, + type.IsSealed, + type.IsAbstract && type.IsSealed, + GenericParameters(type.GetGenericArguments().Where(argument => argument.IsGenericParameter)), + type.BaseType is null ? null : DisplayType(type.BaseType), + type.GetInterfaces().Select(DisplayType).Order(StringComparer.Ordinal).ToArray(), + type.IsEnum ? DisplayType(Enum.GetUnderlyingType(type)) : null, + delegateInvoke is null ? null : ReadMethod(type, delegateInvoke, "delegate_signature", nullability), + Attributes(type.CustomAttributes), + members.OrderBy(member => member.DocId, StringComparer.Ordinal).ToArray()); + } + + private static MemberCatalog ReadMethod(Type owner, MethodBase method, string kind, NullabilityInfoContext nullability) + { + var methodInfo = method as MethodInfo; + return new MemberCatalog( + MemberDocId(owner, method), + kind, + method.IsConstructor ? owner.Name : method.Name, + method.IsStatic, + Visibility(method), + methodInfo is null ? null : DisplayType(methodInfo.ReturnType), + methodInfo is null ? null : Nullability(nullability.Create(methodInfo.ReturnParameter)), + methodInfo is null ? [] : Attributes(methodInfo.ReturnParameter.CustomAttributes), + [], + GenericParameters(method.IsGenericMethodDefinition ? method.GetGenericArguments() : []), + method.GetParameters().Select(parameter => ReadParameter(parameter, nullability)).ToArray(), + null, + null, + null, + null, + null, + null, + Attributes(method.CustomAttributes)); + } + + private static MemberCatalog ReadProperty(Type owner, PropertyInfo property, NullabilityInfoContext nullability) => new( + MemberDocId(owner, property), + property.GetIndexParameters().Length == 0 ? "property" : "indexer", + property.Name, + (property.GetMethod ?? property.SetMethod)!.IsStatic, + MostVisible(property.GetMethod, property.SetMethod), + DisplayType(property.PropertyType), + Nullability(nullability.Create(property)), + [], + Accessors(("get", property.GetMethod), ("set", property.SetMethod)), + [], + property.GetIndexParameters().Select(parameter => ReadParameter(parameter, nullability)).ToArray(), + VisibilityOrNull(property.GetMethod), + VisibilityOrNull(property.SetMethod), + null, + null, + null, + null, + Attributes(property.CustomAttributes)); + + private static MemberCatalog ReadField(Type owner, FieldInfo field, NullabilityInfoContext nullability) + { + var rawValue = field.IsLiteral ? field.GetRawConstantValue() : null; + return new MemberCatalog( + MemberDocId(owner, field), + owner.IsEnum && field.IsLiteral ? "enum_value" : field.IsLiteral ? "constant" : "field", + field.Name, + field.IsStatic, + "public", + DisplayType(field.FieldType), + Nullability(nullability.Create(field)), + [], + [], + [], + [], + null, + null, + field.IsInitOnly, + field.IsLiteral, + field.IsLiteral ? Constant(field.FieldType, rawValue) : null, + owner.IsEnum && field.IsLiteral ? Marshal.SizeOf(Enum.GetUnderlyingType(owner)) * 8 : null, + Attributes(field.CustomAttributes)); + } + + private static MemberCatalog ReadEvent(Type owner, EventInfo @event, NullabilityInfoContext nullability) => new( + MemberDocId(owner, @event), + "event", + @event.Name, + (@event.AddMethod ?? @event.RemoveMethod ?? @event.RaiseMethod)!.IsStatic, + MostVisible(@event.AddMethod, @event.RemoveMethod, @event.RaiseMethod), + @event.EventHandlerType is null ? null : DisplayType(@event.EventHandlerType), + @event.EventHandlerType is null ? null : Nullability(nullability.Create(@event)), + [], + Accessors(("add", @event.AddMethod), ("remove", @event.RemoveMethod), ("raise", @event.RaiseMethod)), + [], + [], + VisibilityOrNull(@event.AddMethod), + VisibilityOrNull(@event.RemoveMethod), + null, + null, + null, + null, + Attributes(@event.CustomAttributes)); + + private static ParameterCatalog ReadParameter(ParameterInfo parameter, NullabilityInfoContext nullability) => new( + parameter.Name ?? $"arg{parameter.Position}", + DisplayType(parameter.ParameterType), + parameter.IsOut ? "out" : parameter.IsIn && parameter.ParameterType.IsByRef ? "in" : parameter.ParameterType.IsByRef ? "ref" : "value", + parameter.IsOptional, + parameter.HasDefaultValue ? Constant(parameter.ParameterType, parameter.DefaultValue) : null, + Nullability(nullability.Create(parameter)), + Attributes(parameter.CustomAttributes)); + + private static AccessorCatalog[] Accessors(params (string Kind, MethodInfo? Method)[] accessors) => accessors + .Where(accessor => accessor.Method is not null) + .Select(accessor => new AccessorCatalog( + accessor.Kind, + Visibility(accessor.Method!), + Attributes(accessor.Method!.CustomAttributes), + Attributes(accessor.Method.ReturnParameter.CustomAttributes))) + .ToArray(); + + private static GenericParameterCatalog[] GenericParameters(IEnumerable arguments) => arguments + .Select(argument => + { + var flags = argument.GenericParameterAttributes; + var constraints = argument.GetGenericParameterConstraints().Select(DisplayType).Order(StringComparer.Ordinal).ToArray(); + return new GenericParameterCatalog( + argument.Name, + argument.GenericParameterPosition, + flags.HasFlag(GenericParameterAttributes.Covariant) ? "out" : flags.HasFlag(GenericParameterAttributes.Contravariant) ? "in" : "invariant", + flags.HasFlag(GenericParameterAttributes.ReferenceTypeConstraint), + flags.HasFlag(GenericParameterAttributes.NotNullableValueTypeConstraint), + flags.HasFlag(GenericParameterAttributes.DefaultConstructorConstraint), + flags.HasFlag(GenericParameterAttributes.AllowByRefLike), + constraints, + Attributes(argument.CustomAttributes)); + }) + .OrderBy(argument => argument.Position) + .ToArray(); + + private static AttributeCatalog[] Attributes(IEnumerable attributes) => attributes + .Select(attribute => new AttributeCatalog( + DisplayType(attribute.AttributeType), + attribute.ConstructorArguments.Select(AttributeValue).ToArray(), + attribute.NamedArguments.OrderBy(argument => argument.MemberName, StringComparer.Ordinal) + .Select(argument => new NamedAttributeValue(argument.MemberName, AttributeValue(argument.TypedValue))).ToArray())) + .OrderBy(attribute => attribute.Type, StringComparer.Ordinal) + .ThenBy(attribute => JsonSerializer.Serialize(attribute, JsonOptions), StringComparer.Ordinal) + .ToArray(); + + private static TypedValue AttributeValue(CustomAttributeTypedArgument argument) => new( + DisplayType(argument.ArgumentType), + argument.Value is IEnumerable values + ? values.Select(AttributeValue).ToArray() + : ConstantText(argument.Value)); + + private static ConstantValue Constant(Type declaredType, object? value) => new( + DisplayType(declaredType.IsByRef ? declaredType.GetElementType()! : declaredType), + ConstantText(value)); + + private static object? ConstantText(object? value) => value switch + { + null or DBNull or Missing => null, + Type type => DisplayType(type), + char character => character.ToString(), + float number => number.ToString("R", CultureInfo.InvariantCulture), + double number => number.ToString("R", CultureInfo.InvariantCulture), + IFormattable formattable => formattable.ToString(null, CultureInfo.InvariantCulture), + _ => value.ToString(), + }; + + private static NullabilityCatalog Nullability(NullabilityInfo info) => new( + info.ReadState.ToString().ToLowerInvariant(), + info.WriteState.ToString().ToLowerInvariant(), + info.ElementType is null ? null : Nullability(info.ElementType), + info.GenericTypeArguments.Select(Nullability).ToArray()); + + private static GeneratorCatalog[] ReadGenerators(string root) + { + var expected = new Dictionary(StringComparer.Ordinal) + { + ["AttentionsGenerator"] = ["LindenAttentions.g.cs"], + ["GenepoolGenerator"] = ["Genepool.g.cs"], + ["PacketSourceGenerator"] = ["Packets.g.cs"], + ["SkeletonGenerator"] = ["LindenSkeletonDefault.g.cs"], + ["TreesGenerator"] = ["GrassDefinitions.g.cs", "TreeDefinitions.g.cs"], + ["VisualParamGenerator"] = ["VisualParams.g.cs"], + }; + var files = Directory.EnumerateFiles(root, "*.cs", SearchOption.AllDirectories).ToArray(); + return expected.Select(pair => + { + var outputs = pair.Value.Select(name => files.SingleOrDefault(path => Path.GetFileName(path) == name) + ?? throw new InvalidOperationException($"{pair.Key} did not emit {name}")) + .Select(path => new GeneratorOutput( + Path.GetRelativePath(root, path).Replace(Path.DirectorySeparatorChar, '/'), + Convert.ToHexString(SHA256.HashData(File.ReadAllBytes(path))).ToLowerInvariant())) + .OrderBy(output => output.Path, StringComparer.Ordinal) + .ToArray(); + return new GeneratorCatalog(pair.Key, outputs); + }).OrderBy(generator => generator.Name, StringComparer.Ordinal).ToArray(); + } + + private static void CollectExternalSurface( + Type type, + HashSet catalogAssemblyNames, + Dictionary<(string Assembly, string DocId), ExternalTypeBuilder> externalTypes) + { + var typeDocId = TypeDocId(type); + CollectExternal(type.BaseType, typeDocId, "base_type", catalogAssemblyNames, externalTypes); + foreach (var @interface in type.GetInterfaces()) + CollectExternal(@interface, typeDocId, "interface", catalogAssemblyNames, externalTypes); + foreach (var argument in type.GetGenericArguments().Where(argument => argument.IsGenericParameter)) + foreach (var constraint in argument.GetGenericParameterConstraints()) + CollectExternal(constraint, typeDocId, $"generic_constraint:{argument.Name}", catalogAssemblyNames, externalTypes); + foreach (var constructor in type.GetConstructors(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly)) + CollectExternalMethod(type, constructor, catalogAssemblyNames, externalTypes); + foreach (var method in type.GetMethods(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(method => !IsAccessor(method))) + CollectExternalMethod(type, method, catalogAssemblyNames, externalTypes); + foreach (var property in type.GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(property => IsPublic(property.GetMethod) || IsPublic(property.SetMethod))) + { + var docId = MemberDocId(type, property); + CollectExternal(property.PropertyType, docId, "property_type", catalogAssemblyNames, externalTypes); + foreach (var parameter in property.GetIndexParameters()) + CollectExternal(parameter.ParameterType, docId, $"parameter:{parameter.Name}", catalogAssemblyNames, externalTypes); + } + foreach (var field in type.GetFields(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(field => !field.IsSpecialName)) + { + var docId = MemberDocId(type, field); + CollectExternal(field.FieldType, docId, "field_type", catalogAssemblyNames, externalTypes); + } + foreach (var @event in type.GetEvents(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly) + .Where(@event => IsPublic(@event.AddMethod) || IsPublic(@event.RemoveMethod) || IsPublic(@event.RaiseMethod))) + { + var docId = MemberDocId(type, @event); + CollectExternal(@event.EventHandlerType, docId, "event_type", catalogAssemblyNames, externalTypes); + } + } + + private static void CollectExternalMethod( + Type owner, + MethodBase method, + HashSet catalogAssemblyNames, + Dictionary<(string Assembly, string DocId), ExternalTypeBuilder> externalTypes) + { + var docId = MemberDocId(owner, method); + if (method is MethodInfo methodInfo) + { + CollectExternal(methodInfo.ReturnType, docId, "return_type", catalogAssemblyNames, externalTypes); + } + foreach (var parameter in method.GetParameters()) + { + CollectExternal(parameter.ParameterType, docId, $"parameter:{parameter.Name}", catalogAssemblyNames, externalTypes); + } + if (method is MethodInfo genericMethod) + foreach (var argument in genericMethod.GetGenericArguments().Where(argument => argument.IsGenericParameter)) + foreach (var constraint in argument.GetGenericParameterConstraints()) + CollectExternal(constraint, docId, $"generic_constraint:{argument.Name}", catalogAssemblyNames, externalTypes); + } + + private static void CollectExternal( + Type? type, + string ownerDocId, + string position, + HashSet catalogAssemblyNames, + Dictionary<(string Assembly, string DocId), ExternalTypeBuilder> externalTypes) + { + if (type is null || type.IsGenericParameter) return; + if (type.HasElementType) + { + CollectExternal(type.GetElementType(), ownerDocId, position, catalogAssemblyNames, externalTypes); + return; + } + var usageSignature = DisplayType(type); + if (type.IsGenericType) + foreach (var argument in type.GetGenericArguments()) + CollectExternal(argument, ownerDocId, position, catalogAssemblyNames, externalTypes); + var definition = type.IsGenericType ? type.GetGenericTypeDefinition() : type; + var assemblyName = definition.Assembly.GetName(); + if (assemblyName.Name is null || catalogAssemblyNames.Contains(assemblyName.Name)) return; + var key = (assemblyName.Name, TypeDocId(definition)); + if (!externalTypes.TryGetValue(key, out var builder)) + { + builder = new ExternalTypeBuilder(definition); + externalTypes.Add(key, builder); + } + builder.Usages.Add(new ExternalTypeUsage(ownerDocId, position, usageSignature)); + } + + private static MetadataCounts ReadMetadataCounts(string path) + { + using var stream = File.OpenRead(path); + using var peReader = new PEReader(stream); + var metadata = peReader.GetMetadataReader(); + var visibleTypes = metadata.TypeDefinitions.Where(handle => IsPubliclyVisible(metadata, handle)).ToHashSet(); + var members = 0; + foreach (var handle in visibleTypes) + { + var definition = metadata.GetTypeDefinition(handle); + var accessors = definition.GetProperties() + .SelectMany(property => PropertyAccessors(metadata.GetPropertyDefinition(property))) + .Concat(definition.GetEvents().SelectMany(@event => EventAccessors(metadata.GetEventDefinition(@event)))) + .ToHashSet(); + members += definition.GetMethods().Count(method => + IsPublic(metadata.GetMethodDefinition(method).Attributes) && !accessors.Contains(method)); + members += definition.GetFields().Count(field => + { + var attributes = metadata.GetFieldDefinition(field).Attributes; + return (attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.Public && + !attributes.HasFlag(FieldAttributes.SpecialName); + }); + members += definition.GetProperties().Count(property => + PropertyAccessors(metadata.GetPropertyDefinition(property)).Any(accessor => IsPublic(metadata.GetMethodDefinition(accessor).Attributes))); + members += definition.GetEvents().Count(@event => + EventAccessors(metadata.GetEventDefinition(@event)).Any(accessor => IsPublic(metadata.GetMethodDefinition(accessor).Attributes))); + } + return new MetadataCounts(visibleTypes.Count, members); + } + + private static IEnumerable PropertyAccessors(PropertyDefinition property) + { + var accessors = property.GetAccessors(); + if (!accessors.Getter.IsNil) yield return accessors.Getter; + if (!accessors.Setter.IsNil) yield return accessors.Setter; + foreach (var other in accessors.Others) yield return other; + } + + private static IEnumerable EventAccessors(EventDefinition @event) + { + var accessors = @event.GetAccessors(); + if (!accessors.Adder.IsNil) yield return accessors.Adder; + if (!accessors.Remover.IsNil) yield return accessors.Remover; + if (!accessors.Raiser.IsNil) yield return accessors.Raiser; + foreach (var other in accessors.Others) yield return other; + } + + private static bool IsPubliclyVisible(MetadataReader metadata, TypeDefinitionHandle handle) + { + var definition = metadata.GetTypeDefinition(handle); + var visibility = definition.Attributes & TypeAttributes.VisibilityMask; + if (visibility == TypeAttributes.Public) return true; + if (visibility != TypeAttributes.NestedPublic) return false; + var parent = definition.GetDeclaringType(); + return !parent.IsNil && IsPubliclyVisible(metadata, parent); + } + + private static bool IsPubliclyVisible(Type type) => type.IsPublic || type.IsNestedPublic && type.DeclaringType is not null && IsPubliclyVisible(type.DeclaringType); + private static bool IsPublic(MethodBase? method) => method?.IsPublic == true; + private static bool IsPublic(MethodAttributes attributes) => (attributes & MethodAttributes.MemberAccessMask) == MethodAttributes.Public; + private static bool IsAccessor(MethodInfo method) => method.IsSpecialName && + (method.Name.StartsWith("get_", StringComparison.Ordinal) || method.Name.StartsWith("set_", StringComparison.Ordinal) || + method.Name.StartsWith("add_", StringComparison.Ordinal) || method.Name.StartsWith("remove_", StringComparison.Ordinal) || + method.Name.StartsWith("raise_", StringComparison.Ordinal)); + + private static string TypeKind(Type type) => type.IsEnum ? "enum" : + typeof(MulticastDelegate).IsAssignableFrom(type.BaseType) ? "delegate" : + type.IsInterface ? "interface" : type.IsValueType ? "struct" : "class"; + + private static string CommonDirectory(string[] paths) + { + var common = Path.GetDirectoryName(paths[0])!; + while (paths.Any(path => !Path.GetFullPath(path).StartsWith(common + Path.DirectorySeparatorChar, StringComparison.Ordinal))) + common = Path.GetDirectoryName(common) ?? throw new InvalidOperationException("assemblies have no common directory"); + return common; + } + + private static string Visibility(MethodBase method) => method.IsPublic ? "public" : method.IsFamily ? "protected" : + method.IsFamilyOrAssembly ? "protected_internal" : method.IsAssembly ? "internal" : "private"; + private static string? VisibilityOrNull(MethodBase? method) => method is null ? null : Visibility(method); + private static string MostVisible(params MethodBase?[] methods) => methods.Any(IsPublic) ? "public" : + methods.Any(method => method?.IsFamilyOrAssembly == true) ? "protected_internal" : + methods.Any(method => method?.IsFamily == true) ? "protected" : "private"; + + private static string DisplayType(Type type) + { + if (type.IsByRef) return $"{DisplayType(type.GetElementType()!)}&"; + if (type.IsPointer) return $"{DisplayType(type.GetElementType()!)}*"; + if (type.IsArray) return $"{DisplayType(type.GetElementType()!)}[{new string(',', type.GetArrayRank() - 1)}]"; + if (type.IsGenericParameter) return type.Name; + var name = (type.IsNested ? $"{DisplayType(type.DeclaringType!)}.{type.Name}" : $"{type.Namespace}.{type.Name}").TrimStart('.'); + var tick = name.IndexOf('`'); + if (tick >= 0) name = name[..tick]; + if (!type.IsGenericType) return name; + var ownArguments = type.GetGenericArguments(); + if (type.IsNested && type.DeclaringType is { IsGenericType: true } declaring) + ownArguments = ownArguments.Skip(declaring.GetGenericArguments().Length).ToArray(); + return ownArguments.Length == 0 ? name : $"{name}<{string.Join(", ", ownArguments.Select(DisplayType))}>"; + } + + private static string TypeDocId(Type type) => $"T:{DocTypeDefinitionName(type)}"; + private static string MemberDocId(Type owner, MemberInfo member) + { + var prefix = member switch + { + PropertyInfo => "P", + FieldInfo => "F", + EventInfo => "E", + _ => "M", + }; + var name = member is ConstructorInfo ? "#ctor" : member.Name.Replace('.', '#'); + if (member is MethodInfo { IsGenericMethodDefinition: true } method) + name += $"``{method.GetGenericArguments().Length}"; + var parameters = member switch + { + MethodBase methodBase => methodBase.GetParameters(), + PropertyInfo property => property.GetIndexParameters(), + _ => [], + }; + var suffix = parameters.Length == 0 ? "" : $"({string.Join(",", parameters.Select(parameter => DocParameterType(parameter.ParameterType)))})"; + if (member is MethodInfo { Name: "op_Implicit" or "op_Explicit" } conversion) + suffix += $"~{DocParameterType(conversion.ReturnType)}"; + return $"{prefix}:{DocTypeDefinitionName(owner)}.{name}{suffix}"; + } + + private static string DocTypeDefinitionName(Type type) + { + var ownName = type.Name; + return type.IsNested + ? $"{DocTypeDefinitionName(type.DeclaringType!)}.{ownName}" + : string.IsNullOrEmpty(type.Namespace) ? ownName : $"{type.Namespace}.{ownName}"; + } + + private static string DocParameterType(Type type) + { + if (type.IsByRef) return $"{DocParameterType(type.GetElementType()!)}@"; + if (type.IsPointer) return $"{DocParameterType(type.GetElementType()!)}*"; + if (type.IsArray) + return type.GetArrayRank() == 1 + ? $"{DocParameterType(type.GetElementType()!)}[]" + : $"{DocParameterType(type.GetElementType()!)}[{string.Join(",", Enumerable.Repeat("0:", type.GetArrayRank()))}]"; + if (type.IsGenericParameter) + return type.DeclaringMethod is null ? $"`{type.GenericParameterPosition}" : $"``{type.GenericParameterPosition}"; + var name = type.IsNested + ? $"{DocParameterType(type.DeclaringType!)}.{type.Name}" + : string.IsNullOrEmpty(type.Namespace) ? type.Name : $"{type.Namespace}.{type.Name}"; + var tick = name.IndexOf('`'); + if (tick >= 0) name = name[..tick]; + if (!type.IsGenericType) return name; + var arguments = type.GetGenericArguments(); + return $"{name}{{{string.Join(",", arguments.Select(DocParameterType))}}}"; + } + + internal static void SelfTest() + { + var method = typeof(SelfTestFixture<>).GetMethod(nameof(SelfTestFixture.Convert))!; + var expected = "M:ApiCatalog.SelfTestFixture`1.Convert``1(System.Collections.Generic.Dictionary{`0,``0[]},System.Int32@)"; + if (MemberDocId(typeof(SelfTestFixture<>), method) != expected) + throw new InvalidOperationException($"documentation ID mismatch: {MemberDocId(typeof(SelfTestFixture<>), method)}"); + var nullability = new NullabilityInfoContext().Create(method.GetParameters()[0]); + if (nullability.GenericTypeArguments.Length != 2 || nullability.GenericTypeArguments[1].ElementType?.ReadState != NullabilityState.Nullable) + throw new InvalidOperationException("nested nullability metadata was not preserved"); + } + + private sealed class SelfTestFixture where T : notnull + { + public static explicit operator string(SelfTestFixture _) => ""; + public string Convert(Dictionary value, ref int count) where TMethod : class => ""; + } + + private sealed record Catalog( + int SchemaVersion, Upstream Upstream, GeneratorCatalog[] SourceGenerators, Summary Summary, + AssemblyCatalog[] Assemblies, ExternalTypeCatalog[] ExternalTypes); + private sealed record Upstream(string Repository, string Commit, string TargetFramework); + private sealed record Summary(int AssemblyCount, int SourceGeneratorCount, int PublicTypeCount, int PublicMemberCount, int ExternalTypeCount); + private sealed record GeneratorCatalog(string Name, GeneratorOutput[] Outputs); + private sealed record GeneratorOutput(string Path, string Sha256); + private sealed record AssemblyCatalog(AssemblyIdentity Identity, Counts Counts, TypeCatalog[] Types); + private sealed record AssemblyIdentity(string Name, string Version, string Culture, string PublicKeyToken, string Mvid, string File, string Sha256); + private sealed record Counts(int CatalogTypes, int CatalogMembers, int MetadataTypes, int MetadataMembers); + private sealed record TypeCatalog( + string DocId, string Namespace, string Name, string Signature, string Kind, string Visibility, + bool Abstract, bool Sealed, bool Static, GenericParameterCatalog[] GenericParameters, + string? BaseType, string[] Interfaces, string? EnumUnderlyingType, MemberCatalog? DelegateSignature, + AttributeCatalog[] Attributes, MemberCatalog[] Members); + private sealed record MemberCatalog( + string DocId, string Kind, string Name, bool Static, string Visibility, string? Type, + NullabilityCatalog? Nullability, AttributeCatalog[] ReturnAttributes, AccessorCatalog[] Accessors, + GenericParameterCatalog[] GenericParameters, ParameterCatalog[] Parameters, + string? GetterVisibility, string? SetterVisibility, bool? ReadOnly, bool? Constant, + ConstantValue? Value, int? NumericWidth, AttributeCatalog[] Attributes); + private sealed record AccessorCatalog(string Kind, string Visibility, AttributeCatalog[] Attributes, AttributeCatalog[] ReturnAttributes); + private sealed record ParameterCatalog( + string Name, string Type, string Passing, bool Optional, ConstantValue? Default, + NullabilityCatalog Nullability, AttributeCatalog[] Attributes); + private sealed record GenericParameterCatalog( + string Name, int Position, string Variance, bool ReferenceType, bool ValueType, + bool DefaultConstructor, bool AllowByRefLike, string[] Constraints, AttributeCatalog[] Attributes); + private sealed record NullabilityCatalog(string Read, string Write, NullabilityCatalog? Element, NullabilityCatalog[] GenericArguments); + private sealed record AttributeCatalog(string Type, TypedValue[] ConstructorArguments, NamedAttributeValue[] NamedArguments); + private sealed record NamedAttributeValue(string Name, TypedValue Value); + private sealed record TypedValue(string Type, object? Value); + private sealed record ConstantValue(string Type, object? Value); + private sealed record ExternalTypeCatalog( + string DocId, string Signature, string Kind, ExternalAssemblyIdentity Assembly, + string MappingStatus, ExternalTypeUsage[] Usages); + private sealed record ExternalAssemblyIdentity(string Name, string Version, string Culture, string PublicKeyToken); + private sealed record ExternalTypeUsage(string OwnerDocId, string Position, string Signature); + private sealed class ExternalTypeBuilder(Type type) + { + internal HashSet Usages { get; } = []; + + internal ExternalTypeCatalog Build() + { + var identity = type.Assembly.GetName(); + return new ExternalTypeCatalog( + TypeDocId(type), + DisplayType(type), + TypeKind(type), + new ExternalAssemblyIdentity( + identity.Name!, + identity.Version?.ToString() ?? "0.0.0.0", + string.IsNullOrEmpty(identity.CultureName) ? "neutral" : identity.CultureName, + Convert.ToHexString(identity.GetPublicKeyToken() ?? []).ToLowerInvariant()), + "pending_rust_mapping", + Usages.OrderBy(usage => usage.OwnerDocId, StringComparer.Ordinal) + .ThenBy(usage => usage.Position, StringComparer.Ordinal) + .ThenBy(usage => usage.Signature, StringComparer.Ordinal) + .ToArray()); + } + } + private readonly record struct MetadataCounts(int Types, int Members); +} diff --git a/tools/extract_public_api.py b/tools/extract_public_api.py new file mode 100644 index 0000000..58cc876 --- /dev/null +++ b/tools/extract_public_api.py @@ -0,0 +1,127 @@ +#!/usr/bin/env python3 +"""Build pinned LibreMetaverse metadata twice and emit a deterministic API catalog.""" + +from __future__ import annotations + +import argparse +import filecmp +import shutil +import subprocess +import tempfile +from pathlib import Path + +UPSTREAM_COMMIT = "2aa70bb68513b39795da5d13c88f31b86e85a3ba" +TARGET_FRAMEWORK = "net10.0" +PROJECTS = ( + "LibreMetaverse.Types/LibreMetaverse.Types.csproj", + "LibreMetaverse.StructuredData/LibreMetaverse.StructuredData.csproj", + "LibreMetaverse.Imaging.Abstractions/LibreMetaverse.Imaging.Abstractions.csproj", + "LibreMetaverse.Imaging.Skia/LibreMetaverse.Imaging.Skia.csproj", + "PrimMesher/LibreMetaverse.PrimMesher.csproj", + "LibreMetaverse/LibreMetaverse.csproj", + "LibreMetaverse.Rendering.Simple/LibreMetaverse.Rendering.Simple.csproj", + "LibreMetaverse.Rendering.MeshFoundry/LibreMetaverse.Rendering.MeshFoundry.csproj", + "LibreMetaverse.LslTools/LibreMetaverse.LslTools.csproj", + "LibreMetaverse.RLV/LibreMetaverse.RLV.csproj", + "LibreMetaverse.Utilities/LibreMetaverse.Utilities.csproj", + "LibreMetaverse.Voice.Vivox/LibreMetaverse.Voice.Vivox.csproj", + "LibreMetaverse.Voice.WebRTC/LibreMetaverse.Voice.WebRTC.csproj", +) +ASSEMBLIES = tuple(Path(project).stem for project in PROJECTS) + + +def run(*command: str, cwd: Path | None = None) -> None: + subprocess.run(command, cwd=cwd, check=True) + + +def output(command: list[str], cwd: Path) -> str: + return subprocess.run(command, cwd=cwd, check=True, text=True, stdout=subprocess.PIPE).stdout.strip() + + +def validate_upstream(upstream: Path) -> None: + actual = output(["git", "rev-parse", "HEAD"], upstream) + if actual != UPSTREAM_COMMIT: + raise RuntimeError(f"expected upstream {UPSTREAM_COMMIT}, found {actual}") + status = output(["git", "status", "--porcelain"], upstream) + if status: + raise RuntimeError("the pinned upstream checkout must be clean") + + +def build_tool(root: Path, temporary: Path) -> Path: + artifacts = temporary / "tool-artifacts" + run( + "dotnet", "build", str(root / "tools/api-catalog/ApiCatalog.csproj"), + "-c", "Release", "--artifacts-path", str(artifacts), + ) + candidates = sorted((artifacts / "bin").rglob("ApiCatalog.dll")) + if len(candidates) != 1: + raise RuntimeError(f"expected one extractor assembly, found {candidates}") + run("dotnet", str(candidates[0]), "--self-test") + return candidates[0] + + +def build_upstream(upstream: Path, temporary: Path) -> tuple[list[Path], Path]: + artifacts = temporary / "upstream-artifacts" + binaries = temporary / "bin" + generated = temporary / "generated" + for project in PROJECTS: + command = [ + "dotnet", "build", str(upstream / project), "-c", "Release", "-f", TARGET_FRAMEWORK, + "--artifacts-path", str(artifacts), "-p:ContinuousIntegrationBuild=true", + f"-p:OutputPath={binaries}/", "-p:CopyLocalLockFileAssemblies=true", + ] + if project == "LibreMetaverse/LibreMetaverse.csproj": + command.extend([ + "--no-incremental", "-p:EmitCompilerGeneratedFiles=true", + f"-p:CompilerGeneratedFilesOutputPath={generated}", + ]) + run(*command) + + paths = [] + for name in ASSEMBLIES: + path = binaries / f"{name}.dll" + if not path.is_file(): + raise RuntimeError(f"missing built assembly {path}") + paths.append(path) + return paths, generated + + +def extract(tool: Path, assemblies: list[Path], generated: Path, destination: Path) -> None: + run( + "dotnet", str(tool), "--output", str(destination), + "--upstream-commit", UPSTREAM_COMMIT, + "--target-framework", TARGET_FRAMEWORK, + "--generated-root", str(generated), + *(str(path) for path in assemblies), + ) + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--upstream", type=Path, default=Path("../libremetaverse")) + parser.add_argument("--output", type=Path, default=Path("api/public-api.json")) + args = parser.parse_args() + root = Path(__file__).resolve().parent.parent + upstream = args.upstream.resolve() + destination = args.output.resolve() + validate_upstream(upstream) + + with tempfile.TemporaryDirectory(prefix="metacrate-api-catalog-") as directory: + temporary = Path(directory) + tool = build_tool(root, temporary) + assemblies, generated = build_upstream(upstream, temporary / "upstream") + outputs = [] + for pass_number in (1, 2): + catalog = temporary / f"public-api-{pass_number}.json" + extract(tool, assemblies, generated, catalog) + outputs.append(catalog) + if not filecmp.cmp(outputs[0], outputs[1], shallow=False): + raise RuntimeError("two clean extraction passes produced different bytes") + validate_upstream(upstream) + destination.parent.mkdir(parents=True, exist_ok=True) + shutil.copyfile(outputs[0], destination) + print(f"wrote deterministic API catalog to {destination}") + + +if __name__ == "__main__": + main()